3 declare(strict_types=1);
42 $this->user_id = $a_usr_id;
43 $this->obj_id = $a_obj_id;
60 $ilDB = $DIC->database();
62 $query =
"SELECT * FROM member_agreement " .
63 "WHERE obj_id = " .
$ilDB->quote($a_obj_id,
'integer');
68 $user_data[(
int) $row->usr_id][
'accepted'] = $row->accepted;
69 $user_data[(
int) $row->usr_id][
'acceptance_time'] = $row->acceptance_time;
81 $ilDB = $DIC->database();
82 $query =
"SELECT * FROM member_agreement " .
83 "WHERE obj_id = " .
$ilDB->quote($a_obj_id,
'integer') .
" " .
87 return (
bool)
$res->numRows();
97 $ilDB = $DIC->database();
98 $query =
"SELECT * FROM member_agreement " .
102 return (
bool)
$res->numRows();
108 public static function _hasAccepted(
int $a_usr_id,
int $a_obj_id): bool
112 $ilDB = $DIC->database();
114 $query =
"SELECT accepted FROM member_agreement " .
115 "WHERE usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" " .
116 "AND obj_id = " .
$ilDB->quote($a_obj_id,
'integer');
119 return (
int) $row->accepted === 1;
132 $ilDB = $DIC->database();
133 $query =
"SELECT usr_id FROM member_agreement " .
134 "WHERE obj_id = " .
$ilDB->quote($a_obj_id,
'integer') .
' ' .
140 $user_ids[] = (
int) $row[
'usr_id'];
152 $ilDB = $DIC->database();
154 $query =
"DELETE FROM member_agreement " .
155 "WHERE usr_id =" .
$ilDB->quote($a_usr_id,
'integer') .
" ";
166 $ilDB = $DIC->database();
167 $query =
"DELETE FROM member_agreement " .
168 "WHERE obj_id =" .
$ilDB->quote($a_obj_id,
'integer') .
" ";
180 $ilDB = $DIC->database();
182 $query =
"UPDATE member_agreement SET accepted = 0 ";
193 $ilDB = $DIC->database();
195 $query =
"UPDATE member_agreement " .
196 "SET accepted = 0 " .
197 "WHERE obj_id = " .
$ilDB->quote($a_container_id,
'integer') .
" ";
206 $this->accepted = $a_status;
214 $this->acceptance_time = $a_timest;
224 !$this->privacy->confirmationRequired($this->type) &&
248 $query =
"INSERT INTO member_agreement (usr_id,obj_id,accepted,acceptance_time) " .
250 $this->db->quote($this->user_id,
'integer') .
", " .
251 $this->db->quote($this->obj_id,
'integer') .
", " .
252 $this->db->quote((
int) $this->
isAccepted(),
'integer') .
", " .
255 $this->db->manipulate(
$query);
261 public function delete():
void 263 $query =
"DELETE FROM member_agreement " .
264 "WHERE usr_id = " . $this->db->quote($this->user_id,
'integer') .
" " .
265 "AND obj_id = " . $this->db->quote($this->obj_id,
'integer');
274 $query =
"SELECT * FROM member_agreement " .
275 "WHERE usr_id = " . $this->db->quote($this->user_id,
'integer') .
" " .
276 "AND obj_id = " . $this->db->quote($this->obj_id,
'integer') .
" ";
280 $this->accepted = (bool) $row->accepted;
281 $this->acceptance_time = (
int) $row->acceptance_time;
static _hasAgreementsByObjId(int $a_obj_id)
Check if there is any user agreement.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setAccepted(bool $a_status)
set accepted
static _reset()
Reset all.
static _deleteByUser(int $a_usr_id)
Delete all entries by user.
agreementRequired()
Checks whether the agreement is accepted This function return always true if no acceptance is require...
static _resetContainer(int $a_container_id)
Reset all agreements for a specific container.
Singleton class that stores all privacy settings.
setAcceptanceTime(int $a_timest)
set acceptance time
static _deleteByObjId(int $a_obj_id)
Delete all entries by obj_id.
static _hasAgreements()
Check if there is any user agreement.
static _readByObjId(int $a_obj_id)
Read user data by object id.
__construct(int $a_usr_id, int $a_obj_id)
static lookupAcceptedAgreements(int $a_obj_id)
Lookup users who have accepted the agreement.
static _hasAccepted(int $a_usr_id, int $a_obj_id)
Check if user has accepted agreement.
static _lookupType(int $id, bool $reference=false)
static _hasFields(int $a_container_id)
Check if there are any define fields.
ilPrivacySettings $privacy
save()
save acceptance settings