, Nicolas Rod for the University of Geneva */ class ShibbolethDisplay { /** * * @return ShibbolethDisplay */ public static function instance() { static $result = false; if (empty($result)) { $result = new self(); } return $result; } public function error_page($message) { $page_title = get_lang('page_title'); Display :: display_header($page_title); Display :: display_error_message($message); Display :: display_footer(); die; } public function message_page($message, $title = '') { $title = $title ? $title : get_lang('page_title'); Display :: display_header($title); Display :: display_confirmation_message($message); Display :: display_footer(); die; } public function page($content, $title = '') { $title = $title ? $title : get_lang('page_title'); Display :: display_header($title); echo $content; Display :: display_footer(); die; } }