24include_once(
'Services/PrivacySecurity/classes/class.ilPrivacySettings.php');
70 $this->lng->loadLanguageModule(
'crs');
71 $this->lng->loadLanguageModule(
'grp');
72 $this->lng->loadLanguageModule(
'ps');
73 $this->lng->loadLanguageModule(
'membership');
78 $this->container = $a_container;
79 $this->ref_id = $this->container->getRefId();
130 $this->registration_possible = $a_status;
174 $parent = $tree->getParentId($this->container->getRefId());
176 $message = sprintf($this->lng->txt($this->container->getType().
'_removed_from_waiting_list'),
177 $this->container->getTitle());
180 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $parent);
181 $ilCtrl->redirectByClass(
"ilrepositorygui",
"");
235 include_once(
'Modules/Course/classes/class.ilObjCourseGrouping.php');
243 $tpl =
new ilTemplate(
'tpl.membership_limitation_form.html',
true,
true,
'Services/Membership');
244 $tpl->setVariable(
'LIMIT_INTRO',$this->lng->txt($this->type.
'_grp_info_reg'));
252 if($ilAccess->checkAccess(
'visible',
'',
$ref_id,$type))
254 include_once(
'./Services/Link/classes/class.ilLink.php');
255 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id",
$ref_id);
256 $tpl->setVariable(
'LINK_ITEM',
257 $ilCtrl->getLinkTargetByClass(
"ilrepositorygui",
""));
258 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id",
$_GET[
"ref_id"]);
259 $tpl->setVariable(
'ITEM_LINKED_TITLE',$title);
263 $tpl->setVariable(
'ITEM_TITLE');
265 $tpl->setCurrentBlock(
'items');
267 $tpl->setVariable(
'ALT_ICON',$this->lng->txt(
'obj_'.$type));
268 $tpl->parseCurrentBlock();
271 $mem->setHtml(
$tpl->get());
276 $mem->setAlert($this->container->getMessage());
279 $this->form->addItem($mem);
297 include_once(
'Modules/Course/classes/Export/class.ilCourseDefinedFieldDefinition.php');
303 $this->lng->loadLanguageModule(
'ps');
305 include_once(
'Services/PrivacySecurity/classes/class.ilExportFieldsInfo.php');
308 if(!count($fields_info->getExportableFields()))
314 $section->setTitle($this->lng->txt($this->type.
'_usr_agreement'));
317 include_once
'./Services/Membership/classes/class.ilMemberAgreementGUI.php';
324 if($this->privacy->confirmationRequired($this->type))
340 include_once(
'Modules/Course/classes/Export/class.ilCourseDefinedFieldDefinition.php');
341 include_once(
'Modules/Course/classes/Export/class.ilCourseUserData.php');
349 $cdf->setValue($this->lng->txt($this->type.
'_ps_cdf_info'));
350 $cdf->setRequired(
true);
352 foreach($cdf_fields as $field_obj)
356 switch($field_obj->getType())
359 $select =
new ilSelectInputGUI($field_obj->getName(),
'cdf['.$field_obj->getId().
']');
361 $select->setOptions($field_obj->prepareSelectBox());
362 if($field_obj->isRequired())
364 $select->setRequired(
true);
367 $cdf->addSubItem($select);
376 $text->setMaxLength(255);
377 if($field_obj->isRequired())
379 $text->setRequired(
true);
381 $cdf->addSubItem(
$text);
385 $this->form->addItem($cdf);
403 include_once(
'Modules/Course/classes/Export/class.ilCourseDefinedFieldDefinition.php');
404 if(!$this->privacy->confirmationRequired($this->type))
422 $required_fullfilled =
true;
425 switch($field_obj->getType())
430 list($field_id,$option_id) = explode(
'_',
$_POST[
'cdf_'.$field_obj->getId()]);
432 #$GLOBALS['ilLog']->write(__METHOD__.': '.print_r($field_id,TRUE).' '.print_r($option_id,TRUE).' '.print_r($_POST,TRUE));
434 $open_answer_indexes = (array) $field_obj->getValueOptions();
435 if(in_array($option_id, $open_answer_indexes))
437 $value =
$_POST[
'cdf_oa_'.$field_obj->getId().
'_'.$option_id];
441 $value = $field_obj->getValueById($option_id);
446 $value =
$_POST[
'cdf_'.$field_obj->getId()];
450 $GLOBALS[
'ilLog']->write(__METHOD__.
': new value '. $value);
454 $course_user_data->setValue($value);
455 $course_user_data->update();
458 if($field_obj->isRequired() and $value ==
"")
460 $required_fullfilled =
false;
464 return $required_fullfilled;
477 include_once(
'Modules/Course/classes/Export/class.ilCourseDefinedFieldDefinition.php');
483 include_once(
'Services/Membership/classes/class.ilMemberAgreement.php');
485 $this->agreement->setAccepted($a_status);
486 $this->agreement->setAcceptanceTime(time());
487 $this->agreement->save();
499 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id",
500 $tree->getParentId($this->container->getRefId()));
501 $ilCtrl->redirectByClass(
"ilrepositorygui",
"");
520 $this->tpl->setContent($this->form->getHTML());
566 if(is_object($this->form))
571 include_once(
'./Services/Form/classes/class.ilPropertyFormGUI.php');
573 $this->form->setFormAction($this->ctrl->getFormAction($this,
'join'));
607 $this->form->addCommandButton(
'join',$this->lng->txt(
'mem_add_to_wl'));
608 $this->form->addCommandButton(
'cancel',$this->lng->txt(
'cancel'));
612 $this->form->addCommandButton(
'join',$this->lng->txt(
'join'));
613 $this->form->addCommandButton(
'cancel',$this->lng->txt(
'cancel'));
618 sprintf($this->lng->txt($this->container->getType().
'_cancel_waiting_list'),
619 $this->container->getTitle())
621 $this->form->addCommandButton(
'leaveWaitingList', $this->lng->txt(
'leave_waiting_list'));
622 $this->form->addCommandButton(
'cancel', $this->lng->txt(
'cancel'));
636 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id",
637 $tree->getParentId($this->container->getRefId()));
638 $ilCtrl->redirectByClass(
"ilrepositorygui",
"");
646 $this->participants->deleteSubscriber(
$ilUser->getId());
649 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id",
650 $tree->getParentId($this->container->getRefId()));
651 $ilCtrl->redirectByClass(
"ilrepositorygui",
"");
static _getFields($a_container_id, $a_sort=IL_CDF_SORT_NAME)
Get all fields of a container.
static _hasFields($a_container_id)
Check if there are any define fields.
static _getInstanceByType($a_type)
Get Singleton Instance.
static addExportFieldInfo($form, $a_obj_id, $a_type)
Add export field info to form @global type $lng.
static addCustomFields($form, $a_obj_id, $a_type, $a_mode='user')
Add custom course fields.
static addAgreement($form, $a_obj_id, $a_type)
Add agreement to form.
This class represents a non editable value in a property form.
_checkGroupingDependencies(&$container_obj, $a_user_id=null)
_getGroupingItems($container_obj)
Get courses/groups that are assigned to the same membership limitation.
static _lookupObjId($a_id)
static _lookupTitle($a_id)
lookup object title
static _getIcon($a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
static _lookupType($a_id, $a_reference=false)
lookup object type
static _getInstance()
Get instance of ilPrivacySettings.
Base class for Course and Group registration.
showCustomFields()
Show course defined fields.
show()
show registration form
fillRegistrationType()
show informations about registration procedure
getContainer()
Parent object.
initParticipants()
Init participants object (course or group participants)
isWaitingListActive()
Check if the waiting list is active Maximum of members exceeded or any user on the waiting list.
getFormTitle()
Get title for property form.
updateSubscriptionRequest()
Update subscription message.
fillRegistrationPeriod()
show informations about the registration period
fillAgreement()
Show user agreement.
addCommandButtons()
Add command buttons.
__construct($a_container)
Constructor.
validateAgreement()
Check Agreement.
setAccepted($a_status)
Set Agreement accepted.
cancel()
cancel subscription
validateCustomFields()
Check required course fields.
cancelSubscriptionRequest()
fillInformations()
fill informations
enableRegistration($a_status)
set registration disabled
initForm()
init registration form
validate()
validate join request
fillMembershipLimitation()
Show membership limitations.
getWaitingList()
Get waiting list object.
initWaitingList()
Init waiting list (course or group waiting list)
isRegistrationPossible()
check if registration is possible
fillMaxMembers()
show informations about the maximum number of user.
special template class to simplify handling of ITX/PEAR
This class represents a text property in a property form.
static sendQuestion($a_info="", $a_keep=false)
Send Question to Screen.
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
$GLOBALS['PHPCAS_CLIENT']
This global variable is used by the interface class phpCAS.