當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Auth::guest方法代碼示例

本文整理匯總了PHP中app\Auth::guest方法的典型用法代碼示例。如果您正苦於以下問題:PHP Auth::guest方法的具體用法?PHP Auth::guest怎麽用?PHP Auth::guest使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在app\Auth的用法示例。


在下文中一共展示了Auth::guest方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: unReadCount

 public function unReadCount()
 {
     if (\Auth::guest()) {
         return 0;
     }
     if ($this->userReadDiscussion->count() > 0) {
         return $this->total_comments - $this->userReadDiscussion->first()->read_comments;
     }
     return $this->total_comments;
 }
開發者ID:philippejadin,項目名稱:Mobilizator,代碼行數:10,代碼來源:Discussion.php

示例2: getCompletedAttribute

 /**
  * @todo this is fucking gross
  */
 public function getCompletedAttribute()
 {
     if (\Auth::guest()) {
         return false;
     }
     $entry = Entry::where('goal_id', $this->id)->where('user_id', \Auth::user()->id)->where('completed_on', Carbon::today())->first();
     if ($entry) {
         return true;
     }
     return false;
 }
開發者ID:Cheddam,項目名稱:health,代碼行數:14,代碼來源:Goal.php

示例3: checkFavorite

 /**
  * Check whether this article got favor by logged in user or not
  *
  * @return boolen
  */
 public function checkFavorite()
 {
     if (\Auth::guest()) {
         return false;
     } else {
         if ($this->favorites()->where('id', \Auth::user()->id)->first() === NULL) {
             return false;
         } else {
             return true;
         }
     }
 }
開發者ID:kittaka1222takashi,項目名稱:dokoiko,代碼行數:17,代碼來源:Article.php

示例4: isProjectAdmin

 /**
  * Check if user is a admin of this project
  *
  * @return boolean
  */
 public function isProjectAdmin($user_id = null)
 {
     if (!Auth::guest()) {
         if ($user_id == null) {
             $user_id = Auth::user()->id;
         }
         $isAdmin = ProjectMember::where('user_id', '=', $user_id)->where('project_id', '=', $this->id)->first();
         if ($isAdmin != null) {
             $isAdmin = true;
         } else {
             $isAdmin = false;
         }
     } else {
         $isAdmin = false;
     }
     return $isAdmin;
 }
開發者ID:uidaho,項目名稱:squireproject,代碼行數:22,代碼來源:ProjectMember.php

示例5: checkFollow

 public function checkFollow()
 {
     if (\Auth::guest()) {
         return false;
     } else {
         if ($this->followedUsers()->where('id', \Auth::user()->id)->first() === NULL) {
             return false;
         } else {
             return true;
         }
     }
 }
開發者ID:kittaka1222takashi,項目名稱:dokoiko,代碼行數:12,代碼來源:User.php


注:本文中的app\Auth::guest方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。