当前位置: 首页>>代码示例>>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;未经允许,请勿转载。