19 declare(strict_types=1);
38 $this->db = $DIC->database();
40 $this->
logger = $DIC->logger()->amet();
42 $this->scope_id = $a_scope_id;
48 $this->record_id = $a_record_id;
58 $this->scope_id = $a_scope_id;
68 $this->ref_id = $a_ref_id;
76 public function save(): void
79 $this->scope_id = $this->db->nextId(
'adv_md_record_scope');
80 $query =
'INSERT INTO adv_md_record_scope (scope_id, record_id, ref_id) ' .
82 $this->db->quote($this->scope_id,
'integer') .
', ' .
83 $this->db->quote($this->record_id,
'integer') .
', ' .
84 $this->db->quote($this->ref_id,
'integer') .
86 $this->db->manipulate($query);
91 $this->
logger->debug(
'Update entry.');
93 $query =
'UPDATE adv_md_record_scope ' .
94 'SET ref_id = ' . $this->db->quote($this->ref_id,
'integer') .
' ' .
95 'WHERE scope_id = ' . $this->db->quote($this->scope_id,
'integer');
96 $this->db->manipulate($query);
99 public function delete():
void 101 $query =
'DELETE FROM adv_md_record_scope ' .
102 'WHERE scope_id = ' . $this->db->quote($this->scope_id,
'integer');
103 $this->db->manipulate($query);
109 $db = $DIC->database();
111 $query =
'DELETE FROM adv_md_record_scope ' .
112 'WHERE record_id = ' . $db->
quote($a_record_id,
'integer');
116 protected function read(): void
118 if (!$this->scope_id) {
121 $query =
'SELECT * FROM adv_md_record_scope ' .
122 'WHERE scope_id = ' . $this->db->quote($this->scope_id,
'integer');
123 $res = $this->db->query($query);
125 $this->record_id = (
int) $row->record_id;
126 $this->ref_id = (
int) $row->ref_id;
__construct(int $a_scope_id=0)
Scope restrictions for advanced md records.
quote($value, string $type)
static deleteByRecordId(int $a_record_id)
setScopeId(int $a_scope_id)
setRecordId(int $a_record_id)
manipulate(string $query)
Run a (write) Query on the database.