19 declare(strict_types=1);
38 $next_class = $this->
ctrl->getNextClass($this);
40 if (!$this->
access->checkAccess(
'join',
'', $this->getRefId())) {
41 $this->
ctrl->redirectByClass(ilObjGroupGUI::class,
'infoScreen');
45 $this->
tabs->activateTab(
'leave');
48 switch ($next_class) {
50 $cmd = $this->
ctrl->getCmd(
"show");
60 return $this->
lng->txt(
'member_status');
62 return $this->
lng->txt(
'grp_registration');
67 if ($this->container->getInformation()) {
70 $imp->setValue($value);
71 $this->
form->addItem($imp);
82 if ($this->container->isRegistrationUnlimited()) {
84 $reg->setValue($this->
lng->txt(
'mem_unlimited'));
85 $this->
form->addItem($reg);
89 $start = $this->container->getRegistrationStart();
90 $end = $this->container->getRegistrationEnd();
94 $tpl =
new ilTemplate(
'tpl.registration_period_form.html',
true,
true,
'components/ILIAS/Membership');
101 $warning = $this->
lng->txt(
'mem_reg_not_started');
103 $tpl =
new ilTemplate(
'tpl.registration_period_form.html',
true,
true,
'components/ILIAS/Membership');
110 $warning = $this->
lng->txt(
'mem_reg_expired');
112 $tpl =
new ilTemplate(
'tpl.registration_period_form.html',
true,
true,
'components/ILIAS/Membership');
119 if (strlen($warning)) {
122 #$reg->setAlert($warning); 123 $this->tpl->setOnScreenMessage(
'failure', $warning);
125 $this->
form->addItem($reg);
136 if (!$this->container->isMembershipLimited()) {
140 $tpl =
new ilTemplate(
'tpl.max_members_form.html',
true,
true,
'components/ILIAS/Membership');
142 if ($this->container->getMinMembers()) {
147 if ($this->container->getMaxMembers()) {
153 $free = $reg_info[
'reg_info_free_places'];
165 $this->container->isWaitingListEnabled() and
166 $this->container->isMembershipLimited() and
183 !$this->container->isWaitingListEnabled()) {
186 $alert = $this->
lng->txt(
'mem_alert_no_places');
188 $this->container->isWaitingListEnabled() and
189 $this->container->isMembershipLimited() and
195 $this->container->isWaitingListEnabled() and
196 $this->container->isMembershipLimited()) {
197 $alert = $this->
lng->txt(
'grp_warn_no_max_set_on_waiting_list');
200 $this->container->isWaitingListEnabled() and
201 $this->container->isMembershipLimited() and
203 $alert = $this->
lng->txt(
'grp_warn_wl_set_on_waiting_list');
209 if (strlen($alert)) {
210 #$max->setAlert($alert); 211 $this->tpl->setOnScreenMessage(
'failure', $alert);
213 $this->
form->addItem($max);
222 switch ($this->container->getRegistrationType()) {
225 $reg->setValue($this->
lng->txt(
'grp_reg_disabled'));
226 #$reg->setAlert($this->lng->txt('grp_reg_deactivated_alert')); 227 $this->
form->addItem($reg);
236 $txt->setValue($this->
lng->txt(
'grp_pass_request'));
240 $pass->setInputType(
'password');
242 $pass->setMaxLength(32);
243 #$pass->setRequired(true); 244 $pass->setInfo($this->
lng->txt(
'group_password_registration_msg'));
246 $txt->addSubItem($pass);
258 $txt->setValue($this->
lng->txt(
'grp_reg_request'));
262 if ($this->
http->wrapper()->post()->has(
'subject')) {
263 $subject = $this->
http->wrapper()->post()->retrieve(
265 $this->
refinery->kindlyTo()->string()
268 $sub->setValue($subject);
269 $sub->setInfo($this->
lng->txt(
'group_req_registration_msg'));
272 if ($this->participants->isSubscriber($this->user->getId())) {
273 $sub_data = $this->participants->getSubscriberData($this->
user->getId());
274 $sub->setValue($sub_data[
'subject']);
276 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'grp_already_assigned'));
279 $txt->addSubItem($sub);
291 $txt->setValue($this->
lng->txt(
'group_req_direct'));
304 parent::addCommandButtons();
305 switch ($this->container->getRegistrationType()) {
307 if ($this->participants->isSubscriber($this->user->getId())) {
308 $this->
form->clearCommandButtons();
309 $this->
form->addCommandButton(
'updateSubscriptionRequest', $this->
lng->txt(
'grp_update_subscr_request'));
310 $this->
form->addCommandButton(
'cancelSubscriptionRequest', $this->
lng->txt(
'grp_cancel_subscr_request'));
315 $this->
form->clearCommandButtons();
316 $this->
form->addCommandButton(
'join', $this->
lng->txt(
'grp_join_request'));
317 $this->
form->addCommandButton(
'cancel', $this->
lng->txt(
'cancel'));
332 $this->join_error = $this->
lng->txt(
'permission_denied');
337 $this->join_error = $this->
lng->txt(
'mem_error_preconditions');
342 if ($this->
http->wrapper()->post()->has(
'grp_passw')) {
343 $password = $this->
http->wrapper()->post()->retrieve(
345 $this->
refinery->kindlyTo()->string()
348 if (!strlen($password)) {
349 $this->join_error = $this->
lng->txt(
'err_wrong_password');
352 if (strcmp($password, $this->container->getPassword()) !== 0) {
353 $this->join_error = $this->
lng->txt(
'err_wrong_password');
358 $this->join_error = $this->
lng->txt(
'fill_out_all_required_fields');
362 $this->join_error = $this->
lng->txt($this->type .
'_agreement_required');
372 protected function add(): void
377 $free = max(0, $this->container->getMaxMembers() - $this->participants->getCountMembers());
380 $this->container->isMembershipLimited() and
381 $this->container->isWaitingListEnabled() and
382 (!$free or $waiting_list->getCountUsers())) {
385 $this->
lng->txt(
'grp_added_to_list'),
386 $this->container->getTitle(),
387 $waiting_list->getPosition($this->
user->getId())
390 $this->participants->sendNotification(
394 $this->tpl->setOnScreenMessage(
'success', $info,
true);
395 $this->
ctrl->setParameterByClass(
398 $this->tree->getParentId($this->container->getRefId())
400 $this->
ctrl->redirectByClass(
"ilrepositorygui",
"");
403 switch ($this->container->getRegistrationType()) {
406 $this->participants->addSubscriber($this->
user->getId());
407 $this->participants->updateSubscriptionTime($this->
user->getId(), time());
409 if ($this->
http->wrapper()->post()->has(
'subject')) {
410 $subject = $this->
http->wrapper()->post()->retrieve(
412 $this->
refinery->kindlyTo()->string()
415 $this->participants->updateSubject($this->
user->getId(), $subject);
416 $this->participants->sendNotification(
421 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"application_completed"),
true);
422 $this->
ctrl->setParameterByClass(
425 $this->tree->getParentId($this->container->getRefId())
427 $this->
ctrl->redirectByClass(
"ilrepositorygui",
"");
433 $this->participants->sendNotification(
437 $this->participants->sendNotification(
445 if (!$pending_goto) {
446 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"grp_registration_completed"),
true);
447 $this->
ctrl->returnToParent($this);
449 $tgt = $pending_goto;
484 static $active =
null;
486 if ($active !==
null) {
489 if (!$this->container->getMaxMembers()) {
490 return $active =
false;
493 !$this->container->isWaitingListEnabled() or
494 !$this->container->isMembershipLimited()) {
495 return $active =
false;
498 $free = max(0, $this->container->getMaxMembers() - $this->participants->getCountMembers());
499 return $active = (!$free or $this->
getWaitingList()->getCountUsers());
static get(string $a_var)
static lookupRegistrationInfo(int $a_obj_id)
const TYPE_NOTIFICATION_REGISTRATION_REQUEST
getPosition(int $a_usr_id)
const GRP_REGISTRATION_DEACTIVATED
Base class for course and group waiting lists.
static _before(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is before end This method does not consider tz offsets.
const TYPE_SUBSCRIBE_MEMBER
getWaitingList()
Get waiting list object.
const GRP_REGISTRATION_REQUEST
Base class for Course and Group registration.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const TYPE_NOTIFICATION_REGISTRATION
setAccepted(bool $a_status)
const TYPE_WAITING_LIST_MEMBER
static http()
Fetches the global http state from ILIAS.
const GRP_REGISTRATION_PASSWORD
addCommandButtons()
Add group specific command buttons.
enableRegistration(bool $a_status)
ilGlobalTemplateInterface $tpl
static _after(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is after end This method does not consider tz offsets.
fillRegistrationPeriod()
show information about the registration period
ilWaitingList $waiting_list
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
const GRP_REGISTRATION_DIRECT
GUI class for group registrations.
initParticipants()
Init course participants.
ilParticipants $participants
static redirect(string $a_script)
fillMaxMembers()
fill max member information protected
Base class for course and group participants.
form( $class_path, string $cmd, string $submit_caption="")
__construct(ilObject $a_container)
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
validate()
validate join request protected
static makeClickable(string $a_text, bool $detectGotoLinks=false)
static clear(string $a_var)
static checkForumsExistsInsert(int $ref_id, int $user_id)