33 protected ?
int $id = null;
39 protected ?array
$def = null;
49 $this->db = $DIC->database();
50 $this->
lng = $DIC->language();
51 $this->
ctrl = $DIC->ctrl();
58 $ilDB = $DIC->database();
60 $set =
$ilDB->query(
"SELECT *" .
62 " WHERE id = " .
$ilDB->quote($a_id,
"integer"));
63 if (
$ilDB->numRows($set)) {
64 $row =
$ilDB->fetchAssoc($set);
65 $obj = self::getInstanceByType($row[
"type"]);
66 $obj->importFromDB($row);
81 $ilDB = $DIC->database();
85 $set =
$ilDB->query(
"SELECT *" .
87 " WHERE parent = " .
$ilDB->quote($a_parent_id,
"integer") .
89 while ($row =
$ilDB->fetchAssoc($set)) {
90 $obj = self::getInstanceByType($row[
"type"]);
91 $obj->importFromDB($row);
92 $res[$obj->getId()] = $obj;
107 $lng = $DIC->language();
110 "bool" => $lng->
txt(
"exc_criteria_type_bool")
111 ,
"rating" => $lng->
txt(
"exc_criteria_type_rating")
112 ,
"text" => $lng->
txt(
"exc_criteria_type_text")
113 ,
"file" => $lng->
txt(
"exc_criteria_type_file")
125 $class =
"ilExcCriteria" . ucfirst($a_type);
139 protected function setId(?
int $a_id): void
144 abstract public function getType(): string;
148 $this->parent = $a_value;
158 $this->title = $a_value;
168 $this->desc = $a_value;
178 $this->required = $a_value;
188 $this->pos = $a_value;
198 $this->def = $a_value;
210 if ($a_def_json !=
"") {
211 $def = json_decode($a_def_json,
true);
212 if (is_array($def)) {
219 if ($a_def !=
"" && version_compare(PHP_VERSION,
'7.0.0') >= 0) {
220 $a_def = unserialize($a_def, [
'allowed_classes' =>
false]);
221 if (is_array($a_def)) {
234 $this->
setId((
int) $a_row[
"id"]);
235 $this->
setParent((
int) $a_row[
"parent"]);
236 $this->
setTitle((
string) $a_row[
"title"]);
241 ? unserialize($a_row[
"def"], [
'allowed_classes' =>
false])
248 "type" => array(
"text", $this->
getType())
249 ,
"title" => array(
"text", $this->
getTitle())
251 ,
"required" => array(
"integer", $this->
isRequired())
267 $set =
$ilDB->query(
"SELECT MAX(pos) pos" .
269 " WHERE parent = " .
$ilDB->quote($this->getParent(),
"integer"));
270 $row =
$ilDB->fetchAssoc($set);
271 return (
int) $row[
"pos"];
283 $this->
id =
$ilDB->nextId(
"exc_crit");
287 $fields[
"id"] = array(
"integer", $this->
id);
288 $fields[
"type"] = array(
"text", $this->
getType());
289 $fields[
"parent"] = array(
"integer", $this->
getParent());
292 $ilDB->insert(
"exc_crit", $fields);
304 $primary = array(
"id" => array(
"integer", $this->
id));
308 public function delete():
void 316 $ilDB->manipulate(
"DELETE FROM exc_crit" .
317 " WHERE id = " .
$ilDB->quote($this->id,
"integer"));
324 $ilDB = $DIC->database();
330 $ilDB->manipulate(
"DELETE FROM exc_crit" .
331 " WHERE parent = " .
$ilDB->quote($a_parent_id,
"integer"));
337 $new_obj->setParent($a_target_parent_id);
338 $new_obj->setTitle($this->
getTitle());
345 return $new_obj->getId();
377 $this->
form = $a_form;
379 $this->giver_id = $a_giver_id;
380 $this->peer_id = $a_peer_id;
397 abstract public function hasValue($a_value);
399 abstract public function getHTML($a_value): string;
setDescription(?string $a_value)
setRequired(bool $a_value)
importCustomForm(ilPropertyFormGUI $a_form)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static getInstancesByParentId(int $a_parent_id)
setDefinition(?array $a_value=null)
setPosition(int $a_value)
importFromPeerReviewForm()
setTitle(?string $a_value)
static getInstanceByType(string $a_type)
exportCustomForm(ilPropertyFormGUI $a_form)
importDefinition(string $a_def, string $a_def_json)
form( $class_path, string $cmd)
cloneObject(int $a_target_parent_id)
importFromDB(array $a_row)
setPeerReviewContext(ilExAssignment $a_ass, int $a_giver_id, int $a_peer_id, ilPropertyFormGUI $a_form=null)
static deleteByParent(int $a_parent_id)
initCustomForm(ilPropertyFormGUI $a_form)
addToPeerReviewForm($a_value=null)
static getInstanceById(int $a_id)