29 protected \ILIAS\BookingManager\InternalDomainService
$domain;
44 bool $a_call_by_reference =
true 48 $this->db = $DIC->database();
52 $this->domain = $DIC->bookingManager()->internal()->domain();
77 $new_id = parent::create();
80 $fields[
"booking_pool_id"] = array(
"integer", $new_id);
82 $ilDB->insert(
"booking_settings", $fields);
91 if (!parent::update()) {
100 array(
"booking_pool_id" => array(
"integer", $this->
getId()))
114 if ($this->
getId()) {
115 $set =
$ilDB->query(
'SELECT * FROM booking_settings' .
116 ' WHERE booking_pool_id = ' .
$ilDB->quote($this->getId(),
'integer'));
117 $row =
$ilDB->fetchAssoc($set);
126 $this->
setMessages((
bool) ((
int) ($row[
'messages'] ?? 0)));
137 $db = $DIC->database();
140 "SELECT * FROM booking_settings " .
141 " WHERE reminder_status = %s " .
142 " AND reminder_day > %s ",
143 array(
"integer",
"integer",
"integer"),
163 $db = $DIC->database();
165 "last_remind_ts" => array(
"integer", $a_ts)
167 "booking_pool_id" => array(
"integer", $a_obj_id)
171 public function delete():
bool 177 if ($this->referenced) {
179 $use_repo->deleteEntriesOfBookRefId($this->
getRefId());
183 if (!parent::delete()) {
189 $ilDB->manipulate(
'DELETE FROM booking_settings' .
190 ' WHERE booking_pool_id = ' .
$ilDB->quote(
$id,
'integer'));
192 $ilDB->manipulate(
'DELETE FROM booking_schedule' .
193 ' WHERE pool_id = ' .
$ilDB->quote(
$id,
'integer'));
196 $set =
$ilDB->query(
'SELECT booking_object_id FROM booking_object' .
197 ' WHERE pool_id = ' .
$ilDB->quote(
$id,
'integer'));
198 while ($row =
$ilDB->fetchAssoc($set)) {
199 $objects[] = $row[
'booking_object_id'];
202 if (count($objects)) {
203 $ilDB->manipulate(
'DELETE FROM booking_reservation' .
204 ' WHERE ' .
$ilDB->in(
'object_id', $objects,
'',
'integer'));
207 $ilDB->manipulate(
'DELETE FROM booking_object' .
208 ' WHERE pool_id = ' .
$ilDB->quote(
$id,
'integer'));
215 $new_obj = parent::cloneObject($target_id, $copy_id, $omit_tree);
217 $schedule_manager = $this->domain->schedules($this->
getId());
219 if ($new_obj !==
null) {
240 foreach ($schedule_manager->getScheduleList() as $schedule_id =>
$title) {
242 $smap[$schedule_id] = $schedule->doClone($new_obj->getId());
249 $bobj->doClone($new_obj->getId(), $smap);
262 $this->messages = $a_value;
276 $this->public_log = $a_value;
286 $this->schedule_type = $a_value;
296 $this->reminder_status = $a_val;
306 $this->reminder_day = $a_val;
316 $this->preference_nr = $a_val;
329 $this->pref_deadline = $a_val;
346 $this->overall_limit = $a_value;
360 $this->reservation_period = $a_value;
380 foreach ($recs as $record_obj) {
382 $field_id = $def->getFieldId();
383 $fields[$field_id] = array(
385 "title" => $def->getTitle(),
386 "type" => $def->getType()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getDBFields()
Parse properties for sql statements.
__construct(int $a_id=0, bool $a_call_by_reference=true)
fetchAssoc(ilDBStatement $statement)
setOverallLimit(?int $a_value=null)
Set overall / global booking limit.
update(string $table_name, array $values, array $where)
$where MUST contain existing columns only.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getAdvancedMDFields(int $a_ref_id)
static _getSelectedRecordsByObject(string $a_obj_type, int $a_id, string $a_sub_type="", bool $is_ref_id=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstancesByRecordId( $a_record_id, $a_only_searchable=false, string $language='')
Get definitions by record id.
static getPoolsWithReminders()
Get pools with reminders.
setReminderDay(int $a_val)
static lookupOfflineStatus(int $obj_id)
Lookup offline status using objectDataCache.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static writeLastReminderTimestamp(int $a_obj_id, int $a_ts)
setReminderStatus(int $a_val)
setPublicLog(bool $a_value=true)
Toggle public log property.
setMessages(bool $a_value=true)
setPreferenceDeadline(int $a_val)
setScheduleType(int $a_value)
static getList(int $a_pool_id, ?string $a_title=null)
Get list of booking objects.
queryF(string $query, array $types, array $values)
getReservationFilterPeriod()
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
ILIAS BookingManager InternalDomainService $domain
__construct(Container $dic, ilPlugin $plugin)
static _getInstance(int $a_copy_id)
cloneObject(int $target_id, int $copy_id=0, bool $omit_tree=false)
const TYPE_NO_SCHEDULE_PREFERENCES
setPreferenceNumber(int $a_val)
setReservationFilterPeriod(?int $a_value=null)
Set reservation filter period default.