コード例 #1
0
ファイル: module_user.php プロジェクト: rasstroen/baby-album
 function showStaticAuth()
 {
     $data = array();
     if (CurrentUser::$authorized) {
         $notifies = CurrentUser::getNotifies();
         if ($notifies) {
             $data['notify'] = $notifies;
         }
     }
     return $data;
 }