19 declare(strict_types=1);
47 if ($this->
http->wrapper()->post()->has(
'visible_participants')) {
48 $this->requested_visible_participants = (array) $this->
http->wrapper()->post()->retrieve(
49 'visible_participants',
50 $this->
refinery->custom()->transformation(
function ($v) {
54 } elseif ($this->
http->wrapper()->query()->has(
'visible_participants')) {
55 $this->requested_visible_participants = (array) $this->
http->wrapper()->query()->retrieve(
56 'visible_participants',
57 $this->
refinery->custom()->transformation(
function ($v) {
63 if ($this->
http->wrapper()->post()->has(
'participated')) {
64 $this->requested_participated = (array) $this->
http->wrapper()->post()->retrieve(
66 $this->
refinery->custom()->transformation(
function ($v) {
72 if ($this->
http->wrapper()->post()->has(
'registered')) {
73 $this->requested_registered = (array) $this->
http->wrapper()->post()->retrieve(
75 $this->
refinery->custom()->transformation(
function ($v) {
81 if ($this->
http->wrapper()->post()->has(
'contact')) {
82 $this->requested_contact = (array) $this->
http->wrapper()->post()->retrieve(
84 $this->
refinery->custom()->transformation(
function ($v) {
90 if ($this->
http->wrapper()->post()->has(
'excused')) {
91 $this->requested_excused = (array) $this->
http->wrapper()->post()->retrieve(
93 $this->
refinery->custom()->transformation(
function ($v) {
99 if ($this->
http->wrapper()->post()->has(
'mark')) {
100 $this->requested_mark = (array) $this->
http->wrapper()->post()->retrieve(
102 $this->
refinery->custom()->transformation(
function ($v) {
108 if ($this->
http->wrapper()->post()->has(
'comment')) {
109 $this->requested_comment = (array) $this->
http->wrapper()->post()->retrieve(
111 $this->
refinery->custom()->transformation(
function ($v) {
117 if ($this->
http->wrapper()->post()->has(
'notification')) {
118 $this->requested_notification = (array) $this->
http->wrapper()->post()->retrieve(
120 $this->
refinery->custom()->transformation(
function ($v) {
126 if ($this->
http->wrapper()->post()->has(
'participants')) {
127 $this->requested_participants = (array) $this->
http->wrapper()->post()->retrieve(
129 $this->
refinery->custom()->transformation(
function ($v) {
155 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.sess_edit_members.html',
'components/ILIAS/Session');
169 $parent_object = parent::getParentObject();
170 return $parent_object;
190 if ($member_ref = $this->tree->checkForParentType(
191 $this->getParentObject()->getRefId(),
194 $member_ref_id = $member_ref;
195 } elseif ($member_ref = $this->tree->checkForParentType(
196 $this->getParentObject()->getRefId(),
199 $member_ref_id = $member_ref;
201 $this->
logger->warning(
'Cannot find parent course or group for ref_id: ' . $this->
getParentObject()->getRefId());
206 $this->
lng->txt(
'sess_mem_tbl_header'),
214 $subscriber->setTitle($this->
lng->txt(
'group_new_registrations'));
226 $waiting = $wait->getUserIds();
228 foreach ($this->requested_visible_participants as $part_id) {
229 if (in_array($part_id, $waiting)) {
234 $participated = (bool) ($this->requested_participated[$part_id] ??
false);
235 $registered = (bool) ($this->requested_registered[$part_id] ??
false);
236 $contact = (bool) ($this->requested_contact[$part_id] ??
false);
237 $excused = (bool) ($this->requested_excused[$part_id] ??
false);
239 $part_id = (
int) $part_id;
241 if ($part->isAssigned($part_id) && !$participated && !$registered) {
242 $part->delete($part_id);
244 if (!$part->isAssigned($part_id) && ($participated || $registered)) {
248 $event_part->setUserId($part_id);
251 $event_part->setNotificationEnabled((
bool) ($this->requested_notification[$part_id] ??
false));
252 $event_part->setParticipated($participated);
253 $event_part->setRegistered($registered);
254 $event_part->setContact($contact);
255 $event_part->setExcused($excused);
256 $event_part->updateUser();
259 $this->tpl->setOnScreenMessage(
'success', $this->
getLanguage()->txt(
'settings_saved'),
true);
260 $this->
getCtrl()->redirect($this,
'participants');
268 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'no_checkbox'),
true);
269 $this->
ctrl->redirect($this,
'participants');
273 $confirm->setFormAction($this->
ctrl->getFormAction($this,
'confirmDeleteParticipants'));
274 $confirm->setHeaderText($this->
lng->txt($this->getParentObject()->getType() .
'_header_delete_members'));
275 $confirm->setConfirm($this->
lng->txt(
'confirm'),
'deleteParticipants');
276 $confirm->setCancel($this->
lng->txt(
'cancel'),
'participants');
284 $name[
'lastname'] .
', ' . $name[
'firstname'] .
' [' . $name[
'login'] .
']',
289 $this->tpl->setContent($confirm->getHTML());
299 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
300 $this->
ctrl->redirect($this,
'participants');
308 $event_part->setUserId($part_id);
309 $event_part->setParticipated(
false);
310 $event_part->setRegistered(
false);
311 $event_part->setMark(
'');
312 $event_part->setComment(
'');
313 $event_part->updateUser();
316 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt($this->getParentObject()->getType() .
"_members_deleted"),
true);
317 $this->
ctrl->redirect($this,
"participants");
336 $data[
'registered'] = (bool) (
$data[
'registered'] ??
false);
337 $data[
'participated'] = (bool) (
$data[
'participated'] ??
false);
339 if ($filters && $filters[
"registered"] && !
$data[
"registered"]) {
345 $this->
lng->txt(
'yes') :
346 $this->
lng->txt(
'no');
347 $data[
'participated'] =
$data[
'participated'] ?
348 $this->
lng->txt(
'yes') :
349 $this->
lng->txt(
'no');
367 return $context_options;
array $requested_registered
Base class for member tab content.
checkPermissionBool(string $a_permission, string $a_cmd='', string $a_type='', int $a_ref_id=0)
initParticipantTemplate()
checkRbacOrPositionAccessBool(string $a_rbac_perm, string $a_pos_perm, int $a_ref_id=0)
No support for positions in sessions Check if rbac or position access is granted. ...
Class ilMailMemberSessionRoles.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
checkPermission(string $a_permission, string $a_cmd="")
Check permission If not granted redirect to parent gui.
static getInstance(int $a_ref_id)
ilObjectGUI $repository_gui
static _lookupName(int $a_user_id)
lookup user name
getAttendanceListUserData(int $user_id, array $filters=[])
getParticipantTableTitle()
initParticipantTableGUI()
confirmDeleteParticipants()
static http()
Fetches the global http state from ILIAS.
GUI class for membership features.
array $requested_participants
Class ilObjectGUI Basic methods of all Output classes.
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
GUI class for course/group subscriptions.
ilParticipants $participants
class ilEventParticipants
array $requested_notification
__construct(Container $dic, ilPlugin $plugin)
array $requested_visible_participants
__construct(ilObjectGUI $repository_gui, ilObject $repository_obj)
Class ilAbstractMailMemberRoles.
array $requested_participated
getPrintMemberData(array $a_members)