Notes
This commit is contained in:
@@ -11,10 +11,41 @@ class Course extends PhpObject {
|
||||
*/
|
||||
private $oDb;
|
||||
|
||||
public function __construct(Db &$oDb)
|
||||
private $iCourseId;
|
||||
|
||||
public function __construct(Db &$oDb, $iCourseId=0)
|
||||
{
|
||||
parent::__construct(__CLASS__, Settings::DEBUG);
|
||||
$this->oDb = &$oDb;
|
||||
$this->setCourseId($iCourseId);
|
||||
}
|
||||
|
||||
public function getCourseId() {
|
||||
return $this->iCourseId;
|
||||
}
|
||||
|
||||
public function setCourseId($iCourseId) {
|
||||
$this->iCourseId = $iCourseId;
|
||||
}
|
||||
|
||||
public function getNote() {
|
||||
$asCourse = $this->oDb->selectRow(self::COURSE_TABLE, $this->getCourseId(), array(Db::getId(self::COURSE_TABLE), 'notes', 'led'));
|
||||
$asCourse['notes'] = json_decode($asCourse['notes'], true);
|
||||
|
||||
return $asCourse;
|
||||
}
|
||||
|
||||
public function setNote($asOps) {
|
||||
$sError = '';
|
||||
$sIdCol = Db::getId(self::COURSE_TABLE);
|
||||
|
||||
if($this->getCourseId() > 0) {
|
||||
$iCourseId = $this->oDb->insertUpdateRow(self::COURSE_TABLE, array($sIdCol=>$this->getCourseId(), 'notes'=>json_encode($asOps)), array($sIdCol));
|
||||
if(!$iCourseId) $sError = $this->oDb->getLastError();
|
||||
}
|
||||
else $sError = 'Course ID not set';
|
||||
|
||||
return $sError;
|
||||
}
|
||||
|
||||
public function getWorkshops() {
|
||||
|
||||
Reference in New Issue
Block a user