Public Member Functions | Data Fields

ilCourseRegisterGUI Class Reference

Public Member Functions

 ilCourseRegisterGUI ($a_course_id)
executeCommand ()
 execute command
 cancel ()
 subscribe ()
 showRegistrationForm ()
 __initCourseObject ()
 __validateStatus ()

Data Fields

 $ctrl
 $ilias
 $tree
 $ilErr
 $lng
 $tpl
 $course_obj
 $course_id
 $user_id

Detailed Description

Definition at line 35 of file class.ilCourseRegisterGUI.php.


Member Function Documentation

ilCourseRegisterGUI::__initCourseObject (  ) 

Definition at line 239 of file class.ilCourseRegisterGUI.php.

References exit, and ilObjectFactory::getInstanceByRefId().

Referenced by ilCourseRegisterGUI().

        {
                if(!$this->course_obj =& ilObjectFactory::getInstanceByRefId($this->course_id,false))
                {
                        $this->ilErr->raiseError("ilCourseRegisterGUI: cannot create course object",$this->ilErr->MESSAGE);
                        exit;
                }
                $this->course_obj->initCourseMemberObject();

                return true;
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilCourseRegisterGUI::__validateStatus (  ) 

Definition at line 251 of file class.ilCourseRegisterGUI.php.

Referenced by showRegistrationForm().

        {
                $this->course_obj->setMessage('');

                if($this->course_obj->members_obj->isAssigned($this->user_id))
                {
                        $this->course_obj->appendMessage($this->lng->txt("crs_reg_user_already_assigned"));
                }
                if($this->course_obj->members_obj->isBlocked($this->user_id))
                {
                        $this->course_obj->appendMessage($this->lng->txt("crs_reg_user_blocked"));
                }
                if($this->course_obj->members_obj->isSubscriber($this->user_id))
                {
                        $this->course_obj->appendMessage($this->lng->txt("crs_reg_user_already_subscribed"));
                }
                if($this->course_obj->getSubscriptionType() == $this->course_obj->SUBSCRIPTION_DEACTIVATED)
                {
                        $this->course_obj->appendMessage($this->lng->txt("crs_reg_subscription_deactivated"));
                }
                if(!$this->course_obj->getSubscriptionUnlimitedStatus() and
                   ( time() < $this->course_obj->getSubscriptionStart()))
                {
                        $this->course_obj->appendMessage($this->lng->txt("crs_reg_subscription_start_later"));
                }
                if(!$this->course_obj->getSubscriptionUnlimitedStatus() and
                   ( time() > $this->course_obj->getSubscriptionEnd()))
                {
                        $this->course_obj->appendMessage($this->lng->txt("crs_reg_subscription_end_earlier"));
                }
                if($this->course_obj->getSubscriptionMaxMembers() and 
                   ($this->course_obj->members_obj->getCountMembers() >= $this->course_obj->getSubscriptionMaxMembers()))
                {
                        $this->course_obj->appendMessage($this->lng->txt("crs_reg_subscription_max_members_reached"));
                }

                return $this->course_obj->getMessage() ? false : true;
        }

Here is the caller graph for this function:

ilCourseRegisterGUI::cancel (  ) 

Definition at line 80 of file class.ilCourseRegisterGUI.php.

References sendInfo().

        {
                sendInfo($this->lng->txt("action_aborted"),true);

                $this->ctrl->setParameterByClass("ilRepositoryGUI","ref_id",$this->tree->getParentId($this->course_id));
                $this->ctrl->redirectByClass("ilRepositoryGUI","ShowList");
                
        }

Here is the call graph for this function:

& ilCourseRegisterGUI::executeCommand (  ) 

execute command

Definition at line 69 of file class.ilCourseRegisterGUI.php.

References $cmd.

        {
                $cmd = $this->ctrl->getCmd();

                if (!$cmd = $this->ctrl->getCmd())
                {
                        $cmd = "showRegistrationForm";
                }
                $this->$cmd();
        }

ilCourseRegisterGUI::ilCourseRegisterGUI ( a_course_id  ) 

Definition at line 48 of file class.ilCourseRegisterGUI.php.

References $ilCtrl, $ilErr, $ilias, $lng, $tpl, $tree, and __initCourseObject().

        {
                global $ilCtrl,$lng,$ilErr,$ilias,$tpl,$tree;

                $this->ctrl =& $ilCtrl;
                $this->ctrl->saveParameter($this,array("ref_id"));

                $this->ilErr =& $ilErr;
                $this->lng =& $lng;
                $this->tpl =& $tpl;
                $this->tree =& $tree;

                $this->user_id = $ilias->account->getId();

                $this->course_id = $a_course_id;
                $this->__initCourseObject();
        }

Here is the call graph for this function:

ilCourseRegisterGUI::showRegistrationForm (  ) 

Definition at line 156 of file class.ilCourseRegisterGUI.php.

References __validateStatus(), ilUtil::getImagePath(), and sendInfo().

Referenced by subscribe().

        {
                $really_submit = $this->__validateStatus();

                if($this->course_obj->getMessage())
                {
                        sendInfo($this->course_obj->getMessage());
                }

                $this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.crs_subscription.html","course");
                $this->tpl->setVariable("FORMACTION",$this->ctrl->getFormActionByClass("ilObjCourseGUI"));
                
                $this->tpl->setVariable("TYPE_IMG",ilUtil::getImagePath("icon_crs.gif"));
                $this->tpl->setVariable("ALT_IMG",$this->lng->txt("obj_crs"));
                $this->tpl->setVariable("TITLE",$this->lng->txt("crs_registration"));

                $this->tpl->setVariable("TXT_SYLLABUS",$this->lng->txt("crs_syllabus"));
                $this->tpl->setVariable("SYLLABUS",nl2br($this->course_obj->getSyllabus()));

                $this->tpl->setVariable("TXT_INFO_REG",$this->lng->txt("crs_info_reg"));

                switch($this->course_obj->getSubscriptionType())
                {
                        case $this->course_obj->SUBSCRIPTION_DEACTIVATED:
                                $this->tpl->setVariable("INFO_REG",$this->lng->txt("crs_info_reg_deactivated"));
                                break;
                        case $this->course_obj->SUBSCRIPTION_CONFIRMATION:
                                $this->tpl->setVariable("INFO_REG",$this->lng->txt("crs_info_reg_confirmation"));
                                break;
                        case $this->course_obj->SUBSCRIPTION_DIRECT:
                                $this->tpl->setVariable("INFO_REG",$this->lng->txt("crs_info_reg_direct"));
                                break;
                        case $this->course_obj->SUBSCRIPTION_PASSWORD:
                                $this->tpl->setVariable("INFO_REG",$this->lng->txt("crs_info_reg_password"));
                                break;
                }

                if($this->course_obj->getSubscriptionType() != $this->course_obj->SUBSCRIPTION_DEACTIVATED)
                {
                        $this->tpl->setCurrentBlock("reg_until");
                        $this->tpl->setVariable("TXT_REG_UNTIL",$this->lng->txt("crs_reg_until"));

                        if($this->course_obj->getSubscriptionUnlimitedStatus())
                        {
                                $this->tpl->setVariable("REG_UNTIL",$this->lng->txt("crs_unlimited"));
                        }
                        else if($this->course_obj->getSubscriptionStart() < time())
                        {
                                $this->tpl->setVariable("FROM",$this->lng->txt("crs_to"));
                                $this->tpl->setVariable("REG_UNTIL",strftime("%c",$this->course_obj->getSubscriptionEnd()));
                        }
                        else if($this->course_obj->getSubscriptionStart() > time())
                        {
                                $this->tpl->setVariable("FROM",$this->lng->txt("crs_from"));
                                $this->tpl->setVariable("REG_UNTIL",strftime("%c",$this->course_obj->getSubscriptionStart()));
                        }
                        $this->tpl->parseCurrentBlock();
                }

                if($this->course_obj->getSubscriptionType() == $this->course_obj->SUBSCRIPTION_PASSWORD and
                   $this->course_obj->inSubscriptionTime())
                {
                        $this->tpl->setCurrentBlock("pass");
                        $this->tpl->setVariable("TXT_PASSWORD",$this->lng->txt("crs_access_password"));
                        $this->tpl->parseCurrentBlock();
                }

                $this->tpl->setVariable("TXT_CANCEL",$this->lng->txt("cancel"));

                if($really_submit)
                {
                        $this->tpl->setCurrentBlock("go");
                        $this->tpl->setVariable("CMD_SUBMIT","subscribe");
                        $this->tpl->setVariable("TXT_SUBMIT",$this->lng->txt("register"));
                        $this->tpl->parseCurrentBlock();
                }
                        

                return true;
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilCourseRegisterGUI::subscribe (  ) 

Definition at line 89 of file class.ilCourseRegisterGUI.php.

References $_POST, exit, ilObjectFactory::getInstanceByObjId(), sendInfo(), showRegistrationForm(), and ilObjUser::updateActiveRoles().

        {
                switch($this->course_obj->getSubscriptionType())
                {
                        case $this->course_obj->SUBSCRIPTION_DEACTIVATED:
                                $this->ilErr->raiseError($this->lng->txt("err_unknown_error"),$this->ilErr->MESSAGE);
                                exit;

                        case $this->course_obj->SUBSCRIPTION_DIRECT:
                                
                                $tmp_obj =& ilObjectFactory::getInstanceByObjId($this->user_id);

                                if($this->course_obj->members_obj->add($tmp_obj,$this->course_obj->members_obj->ROLE_MEMBER))
                                {
                                        $this->course_obj->members_obj->sendNotification($this->course_obj->members_obj->NOTIFY_ADMINS,$this->user_id);
                                        ilObjUser::updateActiveRoles($this->user_id);
                                        sendInfo($this->lng->txt("crs_subscription_successful"),true);
                                        $this->ctrl->returnToParent($this);
                                }
                                else
                                {
                                        sendInfo("err_unknown_error");
                                        $this->showRegistrationForm();
                                }
                                break;

                        case $this->course_obj->SUBSCRIPTION_CONFIRMATION:

                                if($this->course_obj->members_obj->addSubscriber($this->user_id))
                                {
                                        $this->course_obj->members_obj->sendNotification($this->course_obj->members_obj->NOTIFY_ADMINS,$this->user_id);
                                        sendInfo($this->lng->txt("crs_subscription_successful"),true);
                                        $this->ctrl->setParameterByClass("ilRepositoryGUI","ref_id",$this->tree->getParentId($this->course_id));
                                        $this->ctrl->redirectByClass("ilRepositoryGUI","ShowList");
                                }
                                else
                                {
                                        sendInfo("err_unknown_error");
                                        $this->showRegistrationForm();
                                }
                                break;

                        case $this->course_obj->SUBSCRIPTION_PASSWORD:

                                $tmp_obj =& ilObjectFactory::getInstanceByObjId($this->user_id);

                                if($this->course_obj->getSubscriptionPassword() != $_POST["password"])
                                {
                                        sendInfo($this->lng->txt("crs_password_not_valid"),true);
                                        $this->showRegistrationForm();
                                }
                                else if($this->course_obj->members_obj->add($tmp_obj,$this->course_obj->members_obj->ROLE_MEMBER))
                                {
                                        $this->course_obj->members_obj->sendNotification($this->course_obj->members_obj->NOTIFY_ADMINS,$this->user_id);
                                        ilObjUser::updateActiveRoles($this->user_id);
                                        sendInfo($this->lng->txt("crs_subscription_successful"),true);
                                        $this->ctrl->returnToParent($this);
                                }
                                else
                                {
                                        sendInfo("err_unknown_error");
                                        $this->showRegistrationForm();
                                }
                                break;
                }
        }

Here is the call graph for this function:


Field Documentation

ilCourseRegisterGUI::$course_id

Definition at line 45 of file class.ilCourseRegisterGUI.php.

ilCourseRegisterGUI::$course_obj

Definition at line 44 of file class.ilCourseRegisterGUI.php.

ilCourseRegisterGUI::$ctrl

Definition at line 37 of file class.ilCourseRegisterGUI.php.

ilCourseRegisterGUI::$ilErr

Definition at line 40 of file class.ilCourseRegisterGUI.php.

Referenced by ilCourseRegisterGUI().

ilCourseRegisterGUI::$ilias

Definition at line 38 of file class.ilCourseRegisterGUI.php.

Referenced by ilCourseRegisterGUI().

ilCourseRegisterGUI::$lng

Definition at line 41 of file class.ilCourseRegisterGUI.php.

Referenced by ilCourseRegisterGUI().

ilCourseRegisterGUI::$tpl

Definition at line 42 of file class.ilCourseRegisterGUI.php.

Referenced by ilCourseRegisterGUI().

ilCourseRegisterGUI::$tree

Definition at line 39 of file class.ilCourseRegisterGUI.php.

Referenced by ilCourseRegisterGUI().

ilCourseRegisterGUI::$user_id

Definition at line 46 of file class.ilCourseRegisterGUI.php.


The documentation for this class was generated from the following file: