Пример #1
0
 public static function hook_start()
 {
     $user = self::check();
     if ($user && in_array('superadmin', $user->roles) && !Backend::getConfig('application.NoSuperWarning')) {
         Backend::addInfo('You are the super user. Be carefull, careless clicking costs lives...');
     }
     self::$current_user = $user;
     Backend::add('BackendUser', $user);
 }