19 declare(strict_types=1);
39 $this->
lng = $DIC->language();
40 $this->db = $DIC->database();
41 $this->error = $DIC[
'ilErr'];
43 $this->cal_id = $a_cal_id;
52 $query =
'DELETE FROM cal_notification ' .
53 'WHERE user_id = ' .
$ilDB->quote($a_usr_id,
'integer');
62 $query =
'DELETE FROM cal_notification ' .
63 'WHERE cal_id = ' .
$ilDB->quote($a_cal_id,
'integer');
69 $this->cal_id = $a_id;
88 if ($rcp_data[
'type'] == self::TYPE_USER) {
91 $this->error->appendMessage($this->
lng->txt(
'cal_err_invalid_notification_rcps'));
98 public function save(): bool
102 $query =
'INSERT INTO cal_notification ' .
103 '(notification_id,cal_id, user_type, user_id, email) ' .
105 $this->db->quote($this->db->nextId(
'cal_notification'),
'integer') .
', ' .
106 $this->db->quote($this->getEntryId(),
'integer') .
', ' .
107 $this->db->quote((
int) $rcp[
'type'],
'integer') .
', ' .
108 $this->db->quote((
int) $rcp[
'usr_id'],
'integer') .
', ' .
109 $this->db->quote($rcp[
'email'],
'text') .
111 $this->db->manipulate($query);
116 public function addRecipient(
int $a_type,
int $a_usr_id = 0,
string $a_email =
''): void
118 $this->rcps[] = array(
120 'usr_id' => $a_usr_id,
127 $this->rcps = array();
132 $query =
'DELETE FROM cal_notification ' .
133 'WHERE cal_id = ' . $this->db->quote($this->
getEntryId(),
'integer');
134 $res = $this->db->manipulate($query);
137 protected function read(): void
143 $query =
'SELECT * FROM cal_notification ' .
144 'WHERE cal_id = ' . $this->db->quote($this->
getEntryId(),
'integer');
145 $res = $this->db->query($query);
147 $this->rcps = array();
150 (
int) $row->user_type,
161 $ilDB = $DIC[
'ilDB'];
162 if (
$ilDB->tableExists(
'cal_notification')) {
170 'notification_id' => array(
'type' =>
'integer',
'length' => 4,
'notnull' =>
true),
171 'cal_id' => array(
'type' =>
'integer',
'length' => 4,
'notnull' =>
true,
'default' => 0),
172 'user_type' => array(
'type' =>
'integer',
'length' => 1,
'notnull' =>
true,
'default' => 0),
173 'user_id' => array(
'type' =>
'integer',
'length' => 4,
'notnull' =>
true,
'default' => 0),
174 'email' => array(
'type' =>
'text',
'length' => 64,
'notnull' =>
false)
177 $ilDB->addPrimaryKey(
183 $ilDB->createSequence(
'cal_notification');
184 $ilDB->addIndex(
'cal_notification', array(
'cal_id'),
'i1');
static deleteUser(int $a_usr_id)
static is_email(string $a_email, ?ilMailRfc822AddressParserFactory $mailAddressParserFactory=null)
This preg-based function checks whether an e-mail address is formally valid.
setRecipients(array $a_rcps)
__construct(int $a_cal_id=0)
static deleteCalendarEntry(int $a_cal_id)
addRecipient(int $a_type, int $a_usr_id=0, string $a_email='')