, Nicolas Rod for the University of Geneva */ class ShibbolethStatusRequestForm { /** * * @return ShibbolethStatusRequestForm */ public static function instance() { static $result = false; if (empty($result)) { $result = new self(); } return $result; } function display() { if ($this->is_submitted() && $this->get_reason() == '') { $reason_is_mandatory = get_lang('ReasonIsMandatory'); echo Display::return_message($reason_is_mandatory, 'error'); } $status_request_message = get_lang('StatusRequestMessage'); $label_new_status = get_lang('NewStatus'); $label_reason = get_lang('Reason'); $label_ok = get_lang('Ok'); $label_cancel = get_lang('Cancel'); $user = Shibboleth::session()->user(); $items = array(); if ($user['status'] == Shibboleth::UNKNOWN_STATUS) { $items[Shibboleth::STUDENT_STATUS] = get_lang('Student'); } $items[Shibboleth::TEACHER_STATUS] = get_lang('Teacher'); $status_options = ''; foreach ($items as $key => $value) { $status_options.= ""; } return <<

$status_request_message

EOT; } public function is_submitted() { return isset($_POST['submit']) ? $_POST['submit'] : false; } public function cancelled() { return isset($_POST['cancel']) ? $_POST['cancel'] : false; } function get_reason() { return isset($_POST['reason']) ? $_POST['reason'] : ''; } function get_status() { return isset($_POST['status']) ? $_POST['status'] : ''; } }