当前位置: 首页>>代码示例>>PHP>>正文


PHP AuthManager::user方法代码示例

本文整理汇总了PHP中Illuminate\Auth\AuthManager::user方法的典型用法代码示例。如果您正苦于以下问题:PHP AuthManager::user方法的具体用法?PHP AuthManager::user怎么用?PHP AuthManager::user使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Illuminate\Auth\AuthManager的用法示例。


在下文中一共展示了AuthManager::user方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: handle

 /**
  * @param $request
  * @param callable $next
  * @return mixed
  */
 public function handle($request, \Closure $next)
 {
     if ($this->auth->check()) {
         $this->app->setLocale($this->auth->user()->getLocale());
     }
     return $next($request);
 }
开发者ID:studiocaro,项目名称:HorseStories,代码行数:12,代码来源:Locale.php

示例2: postFork

 public function postFork($hash)
 {
     $parent = $this->repository->getByHash($hash);
     $command = new Commands\CreateForkCommand($this->request->get('code'), $this->auth->user(), $parent);
     $fork = $this->bus->execute($command);
     return $this->redirector->action('BinController@getShow', [$fork->hash]);
 }
开发者ID:sdlyhu,项目名称:laravelio,代码行数:7,代码来源:BinController.php

示例3: getIndex

 public function getIndex()
 {
     $user = $this->auth->user();
     $threads = $this->threadRepository->getRecentByMember($user);
     $replies = $this->replyRepository->getRecentByMember($user);
     $this->render('dashboard.index', compact('user', 'threads', 'replies'));
 }
开发者ID:sdlyhu,项目名称:laravelio,代码行数:7,代码来源:DashboardController.php

示例4: authenticate

 /**
  * Authenticate request with Basic.
  *
  * @param  \Illuminate\Http\Request  $request
  * @param  \Illuminate\Routing\Route  $route
  * @return mixed
  */
 public function authenticate(Request $request, Route $route)
 {
     $this->validateAuthorizationHeader($request);
     if ($response = $this->auth->onceBasic($this->identifier) and $response->getStatusCode() === 401) {
         throw new UnauthorizedHttpException('Basic', 'Invalid authentication credentials.');
     }
     return $this->auth->user();
 }
开发者ID:iwillhappy1314,项目名称:laravel-admin,代码行数:15,代码来源:BasicProvider.php

示例5: compose

 /**
  * composing the view
  *
  * @param \Illuminate\View\View $view
  */
 public function compose(\Illuminate\View\View $view)
 {
     $notifications = [];
     if (null !== ($user = $this->authManager->user())) {
         $notifications = $this->notificationManager->getForUser($user, [NotificationActivity::CREATED, NotificationActivity::READ]);
     }
     $view->with('notifications', $notifications);
 }
开发者ID:ipunkt,项目名称:laravel-notify,代码行数:13,代码来源:ViewComposer.php

示例6: postDelete

 public function postDelete($replyId)
 {
     $reply = $this->replies->requireById($replyId);
     $thread = $reply->thread;
     $command = new Commands\DeleteReplyCommand($reply, $this->auth->user());
     $reply = $this->bus->execute($command);
     return $this->redirector->action('ForumController@getViewThread', [$thread->slug]);
 }
开发者ID:sdlyhu,项目名称:laravelio,代码行数:8,代码来源:ForumRepliesController.php

示例7: create

 /**
  * @param array $data
  * @return \HorseStories\Models\Events\Event
  */
 public function create($data = [])
 {
     $event = new Event();
     $event->name = $data['event_name'];
     $event->creator_id = $this->auth->user()->id;
     $event->save();
     return $event;
 }
开发者ID:studiocaro,项目名称:HorseStories,代码行数:12,代码来源:EventCreator.php

示例8: getPreparedRules

 /**
  * Get the prepared validation rules.
  *
  * @return array
  */
 protected function getPreparedRules()
 {
     $forbidden = implode(',', $this->config->get('config.forbidden_usernames', []));
     $userId = $this->auth->user()->id;
     $this->rules['username'] .= '|not_in:' . $forbidden;
     $this->rules['username'] .= '|unique:users,username,' . $userId;
     return $this->rules;
 }
开发者ID:wmk223,项目名称:site,代码行数:13,代码来源:SettingsForm.php

示例9: create

 /**
  * @param \HorseStories\Models\Statuses\Status $status
  * @param string $body
  * @return \HorseStories\Models\Comments\Comment
  */
 public function create(Status $status, $body)
 {
     $comment = new Comment();
     $comment->status_id = $status->id;
     $comment->body = $body;
     $comment->user_id = $this->auth->user()->id;
     $comment->save();
     return $comment;
 }
开发者ID:studiocaro,项目名称:HorseStories,代码行数:14,代码来源:CommentCreator.php

示例10: collect

 /**
  * @{inheritDoc}
  */
 public function collect()
 {
     try {
         $user = $this->auth->user();
     } catch (\Exception $e) {
         $user = null;
     }
     return $this->getUserInformation($user);
 }
开发者ID:focuslife,项目名称:v0.1,代码行数:12,代码来源:AuthCollector.php

示例11: __construct

 /**
  * Create an instance of the Manager
  *
  * @param  \Illuminate\Routing\Router 			 $router
  * @param  \Illuminate\Database\DatabaseManager  $db
  * @param  \Illuminate\Auth\AuthManager 		 $auth
  * @param  \Illuminate\Config\repository 		 $config
  * @return void
  */
 public function __construct(Router $router, IlluminateDatabaseManager $db, AuthManager $auth, Repository $config)
 {
     $this->db = $db;
     $this->router = $router;
     $this->auth = $auth;
     $this->config = $config;
     // Set the user object
     $this->user = $this->auth->user();
     // Set the role control identifier from config
     $this->roleControlIdentifier = $this->config->get('role::role.control.identifier');
 }
开发者ID:leitom,项目名称:role,代码行数:20,代码来源:DatabaseManager.php

示例12: filter

 public function filter(Route $route, Request $request)
 {
     /** @var \anlutro\Core\Auth\Users\UserModel $user */
     if (!($user = $this->auth->user())) {
         throw new \RuntimeException('auth filter must precede access filter');
     }
     // get an array of function arguments #3 and up
     $params = array_slice(func_get_args(), 2);
     foreach ($params as $access) {
         if (!$user->hasAccess($access)) {
             return $this->makeResponse($request);
         }
     }
 }
开发者ID:anlutro,项目名称:l4-core,代码行数:14,代码来源:AccessFilter.php

示例13: store

 /**
  * Log in the user.
  * 
  * @return \Response
  */
 public function store()
 {
     $input = Input::only('email', 'password');
     $remember = Input::has('remember');
     $this->logInForm->validate($input);
     if (!$this->auth->once($input)) {
         return json(['errors' => trans('errors.credentials')]);
     }
     if (!$this->auth->user()->confirmed) {
         return json(['errors' => trans('errors.not_confirmed')]);
     }
     $this->auth->login($this->auth->user(), $remember);
     return json(true);
 }
开发者ID:adriancatalinsv,项目名称:fiip,代码行数:19,代码来源:LoginController.php

示例14: __construct

 public function __construct(DriverLocationTransformer $driverLocationTransformer, AuthManager $authManager, JsonRespond $jsonRespond)
 {
     parent::__construct($jsonRespond);
     $this->user = $authManager->user();
     $this->jsonRespond = $jsonRespond;
     $this->driverLocationTransformer = $driverLocationTransformer;
 }
开发者ID:GiedriusQ,项目名称:taksistas,代码行数:7,代码来源:LocationsController.php

示例15: __construct

 /**
  * DriversController constructor.
  * @param AuthManager $auth
  * @param User $users
  * @param JsonRespond $jsonRespond
  * @param UserTransformer $userTransformer
  */
 public function __construct(AuthManager $auth, User $users, JsonRespond $jsonRespond, UserTransformer $userTransformer)
 {
     $this->user = $auth->user();
     $this->userTransformer = $userTransformer;
     $this->users = $users;
     parent::__construct($jsonRespond);
 }
开发者ID:GiedriusQ,项目名称:taksistas,代码行数:14,代码来源:DriversController.php


注:本文中的Illuminate\Auth\AuthManager::user方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。