19 declare(strict_types=1);
42 $this->db = $DIC->database();
59 $this->server_id = $a_server_id;
67 public function setMid(
int $a_mid): void
78 public function setName(
string $a_name): void
80 $this->name = $a_name;
94 public function delete():
bool 96 $query =
"DELETE FROM ecs_crs_mapping_atts " .
97 'WHERE id = ' . $this->db->quote($this->
getId(),
'integer');
98 $this->db->manipulate($query);
107 $this->
id = $this->db->nextId(
'ecs_crs_mapping_atts');
109 $query =
'INSERT INTO ecs_crs_mapping_atts (id,sid,mid,name) ' .
111 $this->db->quote($this->
getId(),
'integer') .
', ' .
112 $this->db->quote($this->
getServerId(),
'integer') .
', ' .
113 $this->db->quote($this->
getMid(),
'integer') .
', ' .
114 $this->db->quote($this->
getName(),
'text') .
' ' .
116 $this->db->manipulate($query);
125 protected function read(): bool
127 if (!$this->
getId()) {
130 $query =
'SELECT * FROM ecs_crs_mapping_atts ' .
131 'WHERE id = ' . $this->db->quote($this->
getId(),
'integer');
132 $res = $this->db->query($query);
read()
read active attributes
__construct(int $a_id=0)
Constructor.
Storage of course attributes for assignment rules.
setServerId(int $a_server_id)