コード例 #1
0
ファイル: Post.php プロジェクト: swagnarok/infinity-next
 /**
  * Determines if the user can sticky or unsticky this post.
  *
  * @param  App\User|App\Support\Anonymous  $user
  * @return boolean
  */
 public function canSticky($user)
 {
     if (!$this->stickied_at) {
         return $user->canSticky($this);
     }
     return false;
 }
コード例 #2
0
ファイル: Post.php プロジェクト: ee-ee/infinity-next
 /**
  * Determines if the user can sticky or unsticky this post.
  *
  * @param  App\User|App\Support\Anonymous  $user
  * @return boolean
  */
 public function canSticky($user)
 {
     return $user->canSticky($this);
 }