/**
  * @return ilShibbolethPluginWrapper
  */
 public static function getInstance()
 {
     if (!self::$cache instanceof ilShibbolethPluginWrapper) {
         self::$cache = new self();
     }
     return self::$cache;
 }
Example #2
0
 public function logout()
 {
     global $ilUser;
     ilShibbolethPluginWrapper::getInstance()->beforeLogout($ilUser);
     parent::logout();
     ilShibbolethPluginWrapper::getInstance()->afterLogout($ilUser);
 }