19 declare(strict_types=1);
40 $this->
lng = $DIC->language();
41 $this->
ctrl = $DIC->ctrl();
43 $this->
lng->loadLanguageModule(
'crs');
44 $this->
lng->loadLanguageModule(
'sess');
49 public function init(): void
51 $this->delete_enabled =
true;
52 $this->cut_enabled =
true;
53 $this->copy_enabled =
true;
54 $this->subscribe_enabled =
true;
55 $this->link_enabled =
true;
56 $this->info_screen_enabled =
true;
57 $this->subitems_enabled =
true;
59 $this->gui_class_name =
"ilobjsessiongui";
76 $title = strlen($this->title) ? (
': ' .
$this->title) :
'';
78 $app_info[
'start'] ?? 0,
79 $app_info[
'end'] ?? 0,
80 (
bool) ($app_info[
'fullday'] ??
false)
90 $cmd_link = $ilCtrl->getLinkTargetByClass(
"ilrepositorygui", $a_cmd);
91 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $this->requested_ref_id);
100 if ($a_cmd !=
'register' && $a_cmd !=
'unregister') {
103 return parent::checkCommandAccess($a_permission, $a_cmd, $a_ref_id, $a_type, $a_obj_id);
114 if ($session_data->isRegistrationUserLimitEnabled()) {
115 if ($part->getCountMembers() <= $session_data->getRegistrationMaxUsers()) {
118 'property' => $this->
lng->txt(
'sess_list_reg_limit_places'),
121 $session_data->getRegistrationMaxUsers() - $part->getCountMembers()
128 if ($items = self::lookupAssignedMaterials($this->obj_id)) {
131 'property' => $this->
lng->txt(
'event_ass_materials_prop'),
132 'value' => count($items)
139 if (strlen($session_data[
'location'])) {
142 'property' => $this->
lng->txt(
'event_location'),
143 'value' => $session_data[
'location']
146 if (strlen($session_data[
'details'])) {
149 'property' => $this->
lng->txt(
'event_details_workflow'),
150 'value' => nl2br($session_data[
'details']),
154 $has_new_line =
false;
155 if (strlen($session_data[
'name'])) {
158 'property' => $this->
lng->txt(
'event_lecturer'),
159 'value' => $session_data[
'name'],
162 $has_new_line =
true;
164 if (strlen($session_data[
'email'])) {
167 'property' => $this->
lng->txt(
'tutor_email'),
168 'value' => $session_data[
'email'],
169 'newline' => $has_new_line ? false : true
171 $has_new_line =
true;
173 if (strlen($session_data[
'phone'])) {
176 'property' => $this->
lng->txt(
'tutor_phone'),
177 'value' => $session_data[
'phone'],
178 'newline' => $has_new_line ? false : true
180 $has_new_line =
true;
186 if ($repo instanceof \
ILIAS\BookingManager\Reservations\ReservationDBRepository) {
188 $props = $book_info->appendProperties($this->obj_id, $props);
195 if (isset($this->app_info[$this->obj_id])) {
205 $ilDB = $DIC->database();
207 $query =
'SELECT * FROM event_items ei ' .
208 'JOIN tree ON item_id = child ' .
209 'WHERE event_id = ' .
$ilDB->quote($a_sess_id,
'integer') .
' ' .
214 $items[] = $row->item_id;
static lookupAssignedMaterials(int $a_sess_id)
setParameterByClass(string $a_class, string $a_parameter, $a_value)
Sets a parameter for the given GUI class and appends the given value as well.
Interface Observer Contains several chained tasks and infos about them.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getBookingInfoRepo()
static _lookupAppointment(int $a_obj_id)
static getInstance(int $a_ref_id)
getTitle()
get title Overwritten since sessions prepend the date of the session to the title ...
checkCommandAccess($a_permission, $a_cmd, $a_ref_id, $a_type, $a_obj_id=null)
Only check cmd access for cmd 'register' and 'unregister'.
static lookupSession(int $a_obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _appointmentToString(int $start, int $end, bool $fulltime)
enableSubstitutions(bool $status)
__construct(Container $dic, ilPlugin $plugin)
static _getInstanceByObjectType(string $a_type)