24 $values = array(
"obj_id" => array(
"integer", $settings->
getObjId())
25 ,
"content" => array(
"text", $settings->
getContent())
31 $this->db->insert(self::IASS_SETTINGS_TABLE, $values);
33 $values = array(
"obj_id" => array(
"integer", $settings->
getObjId()));
34 $this->db->insert(self::IASS_SETTINGS_INFO_TABLE, $values);
43 $obj_id = $obj->
getId();
44 assert(is_numeric($obj_id));
45 $sql =
"SELECT content, record_template, event_time_place_required, file_required\n" 46 .
" FROM " . self::IASS_SETTINGS_TABLE .
"\n" 47 .
" WHERE obj_id = " . $this->db->quote($obj_id,
'integer');
49 if (
$res = $this->db->fetchAssoc($this->db->query($sql))) {
55 $res[
"record_template"],
56 (bool) $res[
"event_time_place_required"],
57 (
bool) $res[
'file_required']
79 $where = array(
"obj_id" => array(
"integer", $settings->
getObjId()));
81 $values = array(
"content" => array(
"text", $settings->
getContent())
87 $this->db->update(self::IASS_SETTINGS_TABLE, $values, $where);
96 $obj_id = $obj->
getId();
97 assert(is_numeric($obj_id));
98 $sql =
"SELECT contact, responsibility, phone, mails, consultation_hours" 99 .
" FROM " . self::IASS_SETTINGS_INFO_TABLE .
" WHERE obj_id = " . $this->db->quote($obj_id,
'integer');
101 if (
$res = $this->db->fetchAssoc($this->db->query($sql))) {
105 $res[
"responsibility"],
108 $res[
'consultation_hours']
124 $where = array(
"obj_id" => array(
"integer", $settings->
getObjId()));
126 $values = array(
"contact" => array(
"text", $settings->
getContact())
128 ,
"phone" => array(
"text", $settings->
getPhone())
129 ,
"mails" => array(
"text", $settings->
getMails())
133 $this->db->update(self::IASS_SETTINGS_INFO_TABLE, $values, $where);
141 $sql =
"DELETE FROM " . self::IASS_SETTINGS_TABLE .
" WHERE obj_id = %s";
142 $this->db->manipulateF($sql, array(
"integer"), array($obj->
getId()));
144 $sql =
"DELETE FROM " . self::IASS_SETTINGS_INFO_TABLE .
" WHERE obj_id = %s";
145 $this->db->manipulateF($sql, array(
"integer"), array($obj->
getId()));
loadInfoSettings(ilObjIndividualAssessment $obj)
Load info-screen settings corresponding to obj.
For the purpose of streamlining the grading and learning-process status definition outside of tests...
A settings storage handler to write iass settings to db.
static _exists($a_id, $a_reference=false, $a_type=null)
checks if an object exists in object_data
isEventTimePlaceRequired()
Get the value of the checkbox event_time_place_require.
An object carrying settings of an Individual Assessment obj beyond the standart information.
const IASS_SETTINGS_TABLE
getObjId()
Get the id of corresponding iass-object.
getContent()
Get the content of this assessment, e.g.
const IASS_SETTINGS_INFO_TABLE
A general storage interface for Individual assessment settings.
foreach($_POST as $key=> $value) $res
getId()
get object id public
updateSettings(ilIndividualAssessmentSettings $settings)
Update settings entry.
getTitle()
get object title public
getDescription()
get object description
loadSettings(ilObjIndividualAssessment $obj)
Load settings corresponding to obj.
isFileRequired()
Get the value of the checkbox file_required.
getRecordTemplate()
Get the record template to be used as default record with corresponding object.
deleteSettings(ilObjIndividualAssessment $obj)
Delete settings entry corresponding to obj.
createSettings(ilIndividualAssessmentSettings $settings)
Create a entry corresponding to $settings.
updateInfoSettings(ilIndividualAssessmentInfoSettings $settings)
Update info-screen settings entry.