38 $this->obj_id = $a_obj_id;
39 $this->db = $DIC->database();
53 public function save(): void
57 if ($this->obj_id > 0) {
60 array(
"obj_id" => array(
"integer", $this->obj_id)),
61 array(
"noti_mode" => array(
"integer", $this->
getMode()))
66 public function read(): void
71 "SELECT * FROM obj_noti_settings " .
72 " WHERE obj_id = " . $db->
quote($this->obj_id,
"integer")
75 $this->
setMode((
int) ($rec[
"noti_mode"] ?? 0));
78 public function delete():
void 82 $db->
manipulate(
"DELETE FROM obj_noti_settings WHERE " .
83 " obj_id = " . $db->
quote($this->obj_id,
"integer"));
fetchAssoc(ilDBStatement $statement)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
quote($value, string $type)
__construct(int $a_obj_id)
const MODE_DEF_ON_OPT_OUT
query(string $query)
Run a (read-only) Query on the database.
const MODE_DEF_OFF_USER_ACTIVATION
replace(string $table, array $primary_keys, array $other_columns)
Replace into method.
manipulate(string $query)
Run a (write) Query on the database.
const MODE_DEF_ON_NO_OPT_OUT