19 declare(strict_types=1);
59 public function __construct(
int $a_id = 0,
bool $a_call_by_reference =
true)
63 $this->session_logger = $DIC->logger()->sess();
64 $this->obj_data_cache = $DIC[
'ilObjDataCache'];
65 $this->event_handler = $DIC->event();
75 $ilDB = $DIC->database();
77 $query =
"SELECT reg_type FROM event " .
78 "WHERE obj_id = " .
$ilDB->quote($a_obj_id,
'integer') .
" ";
90 $ilDB = $DIC->database();
92 $query =
"SELECT * FROM event " .
93 "WHERE obj_id = " .
$ilDB->quote($a_obj_id,
'integer');
97 $data[
'location'] = $row->location ?:
'';
98 $data[
'details'] = $row->details ?:
'';
99 $data[
'name'] = $row->tutor_name ?:
'';
100 $data[
'email'] = $row->tutor_email ?:
'';
101 $data[
'phone'] = $row->tutor_phone ?:
'';
134 self::LOCAL_ROLE_PARTICIPANT_PREFIX .
'_' . $this->
getRefId(),
135 'Participant of session obj_no.' . $this->
getId(),
136 self::LOCAL_ROLE_PARTICIPANT_PREFIX,
141 $this->session_logger->warning(
'Could not create default session role.');
153 $this->location = $a_location;
163 $this->name = $a_name;
173 $this->phone = $a_phone;
183 $this->email = $a_email;
193 return strlen($this->
getName()) ||
200 $this->details = $a_details;
210 $this->reg_type = $a_type;
225 $this->reg_limited = $a_limit;
235 $this->reg_min_users = $a_users;
245 $this->reg_limited_users = $a_users;
255 $this->reg_waiting_list = $a_stat;
260 $this->reg_waiting_list_autofill = $a_value;
270 $this->show_members = $a_status;
285 $this->registrationNotificationEnabled = $value;
295 $this->notificationOption = $value;
317 $this->show_cannot_participate_option = $status;
327 $this->appointments[] = $appointment;
340 $app = $this->appointments[0] ??
null;
346 $this->mail_members = $a_type;
361 $ilErr->appendMessage($this->
lng->txt(
"sess_max_members_needed"));
368 public function cloneObject(
int $target_id,
int $copy_id = 0,
bool $omit_tree =
false): ?
ilObjSession 373 $new_obj = parent::cloneObject($target_id, $copy_id, $omit_tree);
376 $new_obj->applyDidacticTemplate($dtpl);
386 $new_obj->setAppointments(array($new_app));
387 $new_obj->update(
true);
395 $obj_settings->cloneSettings($new_obj->getId());
396 unset($obj_settings);
440 parent::cloneDependencies($target_id, $copy_id);
442 $target_obj_id = $ilObjDataCache->lookupObjId($target_id);
445 $session_materials->cloneItems($this->
getId(), $copy_id);
450 public function create(
bool $a_skip_meta_data =
false):
int 457 if (!$a_skip_meta_data) {
461 $next_id =
$ilDB->nextId(
'event');
462 $query =
"INSERT INTO event (event_id,obj_id,location,tutor_name,tutor_phone,tutor_email,details,registration, " .
463 'reg_type, reg_limit_users, reg_limited, reg_waiting_list, reg_min_users, reg_auto_wait,show_members,mail_members, 464 reg_notification, notification_opt, show_cannot_part) ' .
466 $ilDB->quote($next_id,
'integer') .
", " .
467 $this->db->quote($this->
getId(),
'integer') .
", " .
468 $this->db->quote($this->
getLocation(),
'text') .
"," .
469 $this->db->quote($this->
getName(),
'text') .
", " .
470 $this->db->quote($this->
getPhone(),
'text') .
", " .
471 $this->db->quote($this->
getEmail(),
'text') .
", " .
472 $this->db->quote($this->
getDetails(),
'text') .
"," .
480 $this->db->quote((
int) $this->
getShowMembers(),
'integer') .
', ' .
487 $this->event_id = $next_id;
489 $ilAppEventHandler->raise(
490 'components/ILIAS/Session',
492 array(
'object' => $this,
493 'obj_id' => $this->
getId(),
497 return $this->
getId();
500 public function update(
bool $a_skip_meta_update =
false): bool
505 if (!parent::update()) {
508 if (!$a_skip_meta_update) {
512 $query =
"UPDATE event SET " .
513 "location = " . $this->db->quote($this->
getLocation(),
'text') .
"," .
514 "tutor_name = " . $this->db->quote($this->
getName(),
'text') .
", " .
515 "tutor_phone = " . $this->db->quote($this->
getPhone(),
'text') .
", " .
516 "tutor_email = " . $this->db->quote($this->
getEmail(),
'text') .
", " .
517 "details = " . $this->db->quote($this->
getDetails(),
'text') .
", " .
525 'show_members = ' . $this->db->quote((
int) $this->
getShowMembers(),
'integer') .
', ' .
531 "WHERE obj_id = " . $this->db->quote($this->
getId(),
'integer') .
" ";
534 $ilAppEventHandler->raise(
535 'components/ILIAS/Session',
537 array(
'object' => $this,
538 'obj_id' => $this->
getId(),
544 public function delete():
bool 549 if (!parent::delete()) {
556 $query =
"DELETE FROM event " .
557 "WHERE obj_id = " . $this->db->quote($this->
getId(),
'integer') .
" ";
564 $ilAppEventHandler->raise(
565 'components/ILIAS/Session',
567 array(
'object' => $this,
568 'obj_id' => $this->
getId(),
579 $query =
"SELECT * FROM event WHERE " .
580 "obj_id = " . $this->db->quote($this->
getId(),
'integer') .
" ";
581 $res = $this->db->query($query);
585 $this->
setName((
string) $row->tutor_name);
586 $this->
setPhone((
string) $row->tutor_phone);
587 $this->
setEmail((
string) $row->tutor_email);
600 $this->event_id = (
int) $row->event_id;
630 $app->setFullday($sess_app->isFullday());
631 $app->setStart($sess_app->getStart());
632 $app->setEnd($sess_app->getEnd());
651 $this->session_logger->debug(
'Waiting list or auto fill is disabled.');
656 $current =
$parts->getCountParticipants();
661 $this->session_logger->warning(
'No ref_id found for obj_id: ' . $this->
getId());
667 if ($max <= $current) {
668 $this->session_logger->debug(
'Maximum number of participants not reached.');
669 $this->session_logger->debug(
'Maximum number of members: ' . $max);
670 $this->session_logger->debug(
'Current number of members: ' . $current);
675 foreach ($session_waiting_list->getUserIds() as
$user_id) {
678 $this->session_logger->warning(
'Found invalid user id on waiting list: ' .
$user_id);
682 $this->session_logger->notice(
'User on waiting list already session member: ' .
$user_id);
687 $this->session_logger->debug(
'Registration enabled: register user');
690 $this->session_logger->debug(
'Registration disabled: set user status to participated.');
691 $parts->getEventParticipants()->updateParticipation(
$user_id,
true);
698 $session_waiting_list->removeFromList(
$user_id);
701 if ($current >= $max) {
setRegistrationMaxUsers(int $a_users)
Session participation handling.
const NOTIFICATION_INHERIT_OPTION
static _deleteBySession(int $a_event_id)
setShowMembers(bool $a_status)
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
cloneSettings(ilObjSession $new_obj)
static _getAllReferences(int $id)
get all reference ids for object ID
setWaitingListAutoFill(bool $a_value)
const LOCAL_ROLE_PARTICIPANT_PREFIX
isRegistrationNotificationEnabled()
setAppointments(array $appointments)
Apointment templates are used for automatic generated apointments.
static createDefaultRole(string $a_title, string $a_description, string $a_tpl_name, int $a_ref_id)
getRegistrationMinUsers()
setRegistrationType(int $a_type)
setMailToMembersType(int $a_type)
static _lookupRegistrationEnabled(int $a_obj_id)
isRegistrationWaitingListEnabled()
ilSessionParticipants $members_obj
bool $registrationNotificationEnabled
isCannotParticipateOptionEnabled()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilObjectDataCache $obj_data_cache
update(bool $a_skip_meta_update=false)
static lookupTemplateId(int $a_ref_id)
cloneMetaData(ilObject $target_obj)
Copy meta data.
enableCannotParticipateOption(bool $status)
setRegistrationNotificationEnabled(bool $value)
getRegistrationMaxUsers()
__construct(int $a_id=0, bool $a_call_by_reference=true)
prepareCalendarAppointments(string $a_mode='create')
isRegistrationUserLimitEnabled()
static _delete(int $a_event_id)
cloneDependencies($target_id, $copy_id)
setPhone(string $a_phone)
static _deleteByEvent(int $a_event_id)
addAppointment(ilSessionAppointment $appointment)
static lookupSession(int $a_obj_id)
string $notificationOption
initDefaultRoles()
Create local session participant role.
static _writeContainerSetting(int $a_id, string $a_keyword, string $a_value)
bool $reg_waiting_list_autofill
create(bool $a_skip_meta_data=false)
setRegistrationMinUsers(int $a_users)
bool $show_cannot_participate_option
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
static lookupNumberOfMembers(int $a_ref_id)
Lookup number of members.
setEmail(string $a_email)
setRegistrationNotificationOption(string $value)
const TYPE_ACCEPTED_SUBSCRIPTION_MEMBER
__construct(Container $dic, ilPlugin $plugin)
setDetails(string $a_details)
static _getInstanceByObjId(int $a_obj_id)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
enabledRegistrationForUsers()
getLongDescription()
get object long description (stored in object_description)
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
static _readAppointmentsBySession(int $a_event_id)
setLocation(string $a_location)
enableRegistrationUserLimit(int $a_limit)
getRegistrationNotificationOption()
getPresentationTitleAppointmentPeriod()
class ilSessionAppointment
ilAppEventHandler $event_handler
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false, ?ilObjUser $user=null)
Format a period of two dates Shows: 14.
enableRegistrationWaitingList(bool $a_stat)