Esempio n. 1
0
 public function handler_mails($page)
 {
     // TODO: use the forlife corresponding to x.edu instead of the hruid
     $forlife = S::user()->login();
     try {
         $xorgIsRegistered = xorgAPI::isRegistered($forlife);
     } catch (xorgUnkonwnUserException $e) {
         $xorgIsRegistered = null;
     }
     $page->assign('xorgRegistered', $xorgIsRegistered);
     $page->assign('user', S::user());
     $page->assign('title', 'Mes mails');
     $page->changeTpl('profile/mails.tpl');
 }