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


PHP Auth::Check方法代碼示例

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


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

示例1: index

 /**
  * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector|\Illuminate\View\View
  */
 public function index()
 {
     if (Auth::Check()) {
         $user = Auth::user();
         $this->request->setTrustedProxies(array('192.0.0.1', '10.0.0.0/8'));
         $this->user->addIp($user, $this->request);
         if ($user->role == 'user') {
             return view('/code/index', compact('user'));
         } else {
             return redirect('/admin/home');
         }
     } else {
         return view('/errors/404');
     }
 }
開發者ID:kristofsw,項目名稱:webdev.comp,代碼行數:18,代碼來源:CodeController.php

示例2: authorize

 /**
  * Determine if the user is authorized to make this request.
  *
  * @return bool
  */
 public function authorize()
 {
     return Auth::Check();
 }
開發者ID:andela-vdugeri,項目名稱:Millimeter,代碼行數:9,代碼來源:UploadResultRequest.php

示例3: see

 /**
  * Retourne de plus amples informations sur un objet mis en vente
  *
  * @param Request $request
  * @param int $item_id Identifiant de l'item
  * @return $this|\Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
  */
 public function see(Request $request, $item_id)
 {
     $item = Items::withTrashed()->select(['id', 'user_id', 'category_id', 'name', 'description', 'photo', 'price', 'date_start', 'date_end'])->where('id', $item_id)->first();
     $isSeller = $item != null ? $item->isSeller() : false;
     $starting = false;
     // La vente n'a pas encore débutée
     $started = false;
     // La vente est en cours
     $finished = false;
     // La vente est terminé
     // Une vente qui n'a pas démarrée ou qui est terminée n'est accessible par personne, sauf par le propriétaire de la vente
     if ($item !== null) {
         // La vente démarrera bientôt
         if (strtotime($item->date_start) - time() > 0) {
             if ($isSeller) {
                 $starting = true;
                 $request->session()->flash('message', 'info|La vente débutera le ' . strftime('%A %d %B %Y', strtotime($item->date_start)) . '.');
             }
             // La vente est terminée
         } elseif (strtotime($item->date_end) - time() < 0) {
             $finished = true;
             $request->session()->flash('message', 'info|La vente s\'est terminée le ' . strftime('%A %d %B %Y', strtotime($item->date_end)) . '.');
             // La vente est en cours
         } else {
             $started = true;
         }
     }
     // Voir le tableau des accès selon les différents critères dans le cahier des charges
     if ($item === null || !$isSeller && $starting) {
         $request->session()->flash('message', 'danger|Cette vente n\'existe pas.');
         return redirect(route('items'));
     }
     $item->form_id = 'form_' . $item->id;
     $item->userIsSeller = $isSeller;
     $item->lastBidPrice = $item->getPrice();
     $item->userBidsCount = $item->getUserBidsCount();
     $item->userCantBid = Auth::Check() && $item->userBidsCount >= MAX_BID_PER_SALE;
     return view('item')->with(compact('item', 'started', 'starting', 'finished'));
 }
開發者ID:Kocal,項目名稱:IUT-PHP-Le-Chaudron-Baveur,代碼行數:46,代碼來源:ItemsController.php

示例4: getUserCantBid

 /**
  * Détermine si l'utilisateur peut renchérir cette annonce ou non
  *
  * @return bool
  */
 public function getUserCantBid()
 {
     return Auth::Check() && $this->userBidsCount >= MAX_BID_PER_SALE;
 }
開發者ID:Kocal,項目名稱:IUT-PHP-Le-Chaudron-Baveur,代碼行數:9,代碼來源:Items.php


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