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


PHP Auth::user方法代码示例

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


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

示例1: post

 public function post()
 {
     $file = array('users' => Request::all());
     // setting up rules
     $rules = array('users' => 'required', 'mimes' => 'jpeg,jpg,png', 'max' => '200px');
     //mimes:jpeg,bmp,png and for max size max:10000
     // doing the validation, passing post data, rules and the messages
     $validator = Validator::make($file, $rules);
     if ($validator->fails()) {
         // send back to the page with the input data and errors
         return redirect('settings')->withInput()->withErrors($validator);
     } else {
         // checking file is valid.
         if (Input::file('user_image')->isValid()) {
             $extension = Input::file('user_image')->getClientOriginalExtension();
             // getting image extension
             $fileName = rand(11111, 99999) . '.' . $extension;
             // renaming image
             Input::file('user_image')->move('uploads/', $fileName);
             // uploading file to given path
             $file->user_image = $fileName;
             \Auth::user()->post->save();
             // sending back with message
             \Session::flash('flash_message', 'You have successfully updated your codename!');
             return redirect('settings');
         } else {
             // sending back with error message.
             \Session::flash('error', 'uploaded file is not valid');
             return redirect('home');
         }
     }
 }
开发者ID:TUPM-BSCS,项目名称:iConfess,代码行数:32,代码来源:User.php

示例2: put

 public function put($data)
 {
     $this->fill($data);
     $this->user_id = \Auth::user()->id;
     $this->save();
     return $this;
 }
开发者ID:kilrizzy,项目名称:laraticket,代码行数:7,代码来源:Client.php

示例3: scopeClient

 public function scopeClient($query, $request)
 {
     //$query->join('projects','claim.project_id','=','projects.id');
     if (!empty($request['created_at_from']) && !empty($request['created_at_to'])) {
         $dtFrom = new \DateTime($request['created_at_from']);
         $dtTo = new \DateTime($request['created_at_to']);
         $query->whereBetween('claims.created_at', [$dtFrom->format('Y-m-d 00:00:00'), $dtTo->format('Y-m-d 23:59:59')]);
     } elseif (!empty($request['created_at_from']) && empty($request['created_at_to'])) {
         $dtFrom = new \DateTime($request['created_at_from']);
         $dtTo = new \DateTime();
         $query->whereBetween('claims.created_at', [$dtFrom->format('Y-m-d 00:00:00'), $dtTo->format('Y-m-d 23:59:59')]);
     } elseif (empty($request['created_at_from']) && !empty($request['created_at_to'])) {
         $dtFrom = new \DateTime($request['created_at_to']);
         $dtTo = new \DateTime('created_at_to');
         $query->whereBetween('claims.created_at', [$dtFrom->format('Y-m-d 00:00:00'), $dtTo->format('Y-m-d 23:59:59')]);
     }
     if (!empty($request['status'])) {
         $query->where('claims.status', $request['status']);
     }
     if (!empty($request['id'])) {
         $query->where('claims.id', (int) $request['id']);
     }
     if (!empty($request['name'])) {
         $query->where('claims.name', 'like', "%" . $request['name'] . "%");
     }
     if (!empty($request['phone'])) {
         $query->where('claims.phone', 'like', "%" . $request['phone'] . "%");
     }
     $query->join('projects', function ($join) {
         $join->on('claims.project_id', '=', 'projects.id')->where('projects.client_id', '=', \Auth::user()->id);
     });
     $query->orderBy('claims.id', 'desc')->get(["claims.*"]);
 }
开发者ID:avinaszh,项目名称:callcenter,代码行数:33,代码来源:Claim.php

示例4: uploadBeerImg_callback

 public static function uploadBeerImg_callback($request, $fileimage)
 {
     $image_unique_id = date('Ymdhis') . rand(0, 9999);
     $beer_meta = new BeerImg();
     $beer_meta->beer_id = $request['beer_id'];
     $beer_meta->description = !empty($request['img_description']) ? $request['img_description'] : null;
     $beer_name = !empty($request['img_description']) ? $request['img_description'] : null;
     $imageName = "beerhit.com_" . strtolower($beer_name) . $request['beer_id'] . $image_unique_id . '.' . $fileimage->getClientOriginalExtension();
     $path = public_path('/images/catalog/' . $imageName);
     $img = ImageManagerStatic::make($fileimage);
     // resize the image to a width of 960
     // and constrain aspect ratio (auto width)
     $img->resize(960, null, function ($constraint) {
         $constraint->aspectRatio();
         $constraint->upsize();
     });
     $img->save($path);
     //Save image information to database
     $beer_meta->img_id = $image_unique_id;
     $beer_meta->filename = $imageName;
     $beer_meta->path = '/images/catalog/' . $imageName;
     $beer_meta->user_id = \Auth::user()->id;
     $beer_meta->place_id = $request['fb_place_id'];
     $beer_meta->save();
     \UserBeerHelper::userLog(\Auth::user()->id, $request['beer_id'], 200, $request['fb_place_id'], $image_unique_id);
 }
开发者ID:ktardthong,项目名称:beerhit,代码行数:26,代码来源:BeerImg.php

示例5: getNiveauPrice

 public static function getNiveauPrice($niveau)
 {
     if (\Auth::user()->pricebills()->where('niveau', $niveau)->first()) {
         $price = \Auth::user()->pricebills()->where('niveau', $niveau)->first();
         return $price->prix;
     }
 }
开发者ID:khaleader,项目名称:creche,代码行数:7,代码来源:PriceBill.php

示例6: getNotReadMessagesById

 public function getNotReadMessagesById($id)
 {
     $count = $this->where('id_receive', \Auth::user()->id)->where('read', NULL)->where('dialog_id', $id)->count();
     if ($count) {
         return '(' . $count . ')';
     }
 }
开发者ID:zluy4yvak,项目名称:chat,代码行数:7,代码来源:Message.php

示例7: totalMonthlyCoverage

 public static function totalMonthlyCoverage()
 {
     $visitClass = Customer::select('class')->where('mr_id', \Auth::user()->id)->get()->toArray();
     $totalVisitsCount = VisitClass::whereIn('name', $visitClass)->sum('visits_count');
     $actualVisitsCount = Report::where('mr_id', \Auth::user()->id)->where('month', date('M') . '-' . date('Y'))->count();
     return number_format($actualVisitsCount / $totalVisitsCount * 100, 2);
 }
开发者ID:m-gamal,项目名称:crm,代码行数:7,代码来源:Customer.php

示例8: checkSua

 public static function checkSua($chucnang)
 {
     $rolechucnangs = RoleChucnang::join('danhmucchucnangs', 'role_chucnangs.danhmucchucnang_id', '=', 'danhmucchucnangs.id')->where('role_id', \Auth::user()->role_id)->where('danhmucchucnangs.chucnang_id', $chucnang)->first();
     if ($rolechucnangs->Sua == 1) {
         return TRUE;
     }
     return FALSE;
 }
开发者ID:thaigialai1987,项目名称:qlcv,代码行数:8,代码来源:Role.php

示例9: isLoggedUser

 /**
  * @return boolean returns <b>true</b> if this User model is the user we logged in as.
  */
 public function isLoggedUser()
 {
     $authUser = \Auth::user();
     if (!empty($authUser) && $authUser->id == $this->id) {
         return true;
     }
     return false;
 }
开发者ID:Ravaelles,项目名称:Elder,代码行数:11,代码来源:User.php

示例10: isBingoPlayer

 public function isBingoPlayer()
 {
     if (\Auth::user()->role->role == 'bp') {
         return true;
     } else {
         return false;
     }
 }
开发者ID:botlax,项目名称:ttcattendance,代码行数:8,代码来源:User.php

示例11: isAdmin

 public function isAdmin()
 {
     $user = \Auth::user()->toArray();
     if ($user['isAdmin'] == 1) {
         return true;
     }
     return false;
 }
开发者ID:slaleye,项目名称:securechat,代码行数:8,代码来源:User.php

示例12: isSkrbnik

 public function isSkrbnik()
 {
     if (\Auth::user()->type == 4) {
         return true;
     } else {
         return false;
     }
 }
开发者ID:Kokanm,项目名称:eStudentLaravel,代码行数:8,代码来源:User.php

示例13: isMe

 public function isMe()
 {
     if ($this->id == \Auth::user()->id) {
         return true;
     } else {
         return false;
     }
 }
开发者ID:mikebywater,项目名称:m8d8,代码行数:8,代码来源:User.php

示例14: userReadDiscussion

 public function userReadDiscussion()
 {
     if (\Auth::check()) {
         return $this->hasMany('App\\UserReadDiscussion')->where('user_id', '=', \Auth::user()->id);
     } else {
         abort(500, 'Need to be logged in to access this userReadDiscussion relation');
     }
 }
开发者ID:philippejadin,项目名称:Mobilizator,代码行数:8,代码来源:Discussion.php

示例15: complete

 public function complete()
 {
     if ($this->completed_at != null) {
         throw new \Exception('Task already completed');
     }
     $this->completed_at = new Carbon();
     $this->completed_by = \Auth::user()->id;
 }
开发者ID:BostjanOb,项目名称:ProTODO,代码行数:8,代码来源:Task.php


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