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


PHP Controllers\Controller類代碼示例

本文整理匯總了PHP中App\Http\Controllers\Controller的典型用法代碼示例。如果您正苦於以下問題:PHP Controller類的具體用法?PHP Controller怎麽用?PHP Controller使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: __construct

 /**
  * FlyersController constructor.
  */
 public function __construct()
 {
     // everybody must be authenticated to access the methods
     // except for the show method
     $this->middleware('auth', ['except' => ['show']]);
     parent::__construct();
 }
開發者ID:anruence,項目名稱:project-flyer,代碼行數:10,代碼來源:FlyersController.php

示例2: __construct

 /**
  * Constructor.
  *
  * @param type \Litecms\PriceList\Interfaces\PriceListRepositoryInterface $pricelist
  *
  * @return type
  */
 public function __construct(PriceListRepositoryInterface $pricelist)
 {
     $this->repository = $pricelist;
     $this->middleware('web');
     $this->setupTheme(config('theme.themes.public.theme'), config('theme.themes.public.layout'));
     parent::__construct();
 }
開發者ID:litecms,項目名稱:pricelist,代碼行數:14,代碼來源:PriceListController.php

示例3: __construct

 public function __construct(PartRepositoryEloquent $partRepo, TireSensorRepositoryEloquent $tireSensorRepo)
 {
     parent::__construct();
     $this->middleware('auth');
     $this->partRepo = $partRepo;
     $this->tireSensorRepo = $tireSensorRepo;
 }
開發者ID:alientronics,項目名稱:fleetany-web,代碼行數:7,代碼來源:TireController.php

示例4: __construct

 /**
  * @param DbBookRepository $bookRepository
  * @param AjaxBookRepository $ajaxRepository
  */
 public function __construct(DbBookRepository $bookRepository, AjaxBookRepository $ajaxRepository)
 {
     $this->middleware('acl:create_book', ['only' => ['index', 'create', 'store', 'edit', 'update', 'ajaxSearchISBN']]);
     $this->book = $bookRepository;
     $this->ajax = $ajaxRepository;
     parent::__construct();
 }
開發者ID:nicsmyrn,項目名稱:library,代碼行數:11,代碼來源:BooksController.php

示例5: __construct

public function __construct()
	{
$this->middleware('auth');
//$this->user = Auth::user();
parent::__construct();

	}
開發者ID:RybinDen,項目名稱:laravel-blog,代碼行數:7,代碼來源:HomeController.php

示例6: __construct

 /**
  * Abort if request is not ajax
  * @param Request $request
  */
 public function __construct(Request $request)
 {
     if (!$request->ajax() || !Datatable::shouldHandle()) {
         abort(403, 'Forbidden');
     }
     parent::__construct();
 }
開發者ID:santoshpawar,項目名稱:laravel-5-simple-cms,代碼行數:11,代碼來源:DataTableController.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
     $this->roleModel = new Role();
     $this->appModel = new App();
     $this->authModel = new Auth();
 }
開發者ID:xxtime,項目名稱:boss,代碼行數:7,代碼來源:RoleController.php

示例8: __construct

 /**
  * Add the permissions requirements for each route.
  */
 public function __construct()
 {
     // Require authentication
     $this->middleware('auth.permission:member', ['except' => ['dash', 'getMyProfile', 'postMyProfile', 'updatePassword', 'dashSU', 'profile']]);
     $this->middleware('auth', ['only' => ['dash', 'dashSU', 'getMyProfile', 'postMyProfile', 'updatePassword', 'profile']]);
     parent::__construct();
 }
開發者ID:backstagetechnicalservices,項目名稱:website,代碼行數:10,代碼來源:MembersController.php

示例9: __construct

 /**
  * Create a new authentication controller instance.
  *
  * @param  \Illuminate\Contracts\Auth\Guard  $auth
  * @param  \Illuminate\Contracts\Auth\Registrar  $registrar
  * @return void
  */
 public function __construct(Guard $auth, Registrar $registrar)
 {
     parent::__construct();
     $this->auth = $auth;
     $this->registrar = $registrar;
     $this->middleware('guest', ['except' => 'getLogout']);
 }
開發者ID:kpaxer,項目名稱:shcms,代碼行數:14,代碼來源:AuthController.php

示例10: __construct

 public function __construct()
 {
     $this->middleware('api');
     $this->middleware('jwt.auth:api');
     $this->setupTheme(config('theme.themes.user.theme'), config('theme.themes.user.layout'));
     parent::__construct();
 }
開發者ID:lavalite,項目名稱:cms,代碼行數:7,代碼來源:UserApiController.php

示例11: __construct

 public function __construct()
 {
     parent::__construct();
     if (\Session::has('admin.username')) {
         $this->userid = \Session::get('admin.adminid');
     }
 }
開發者ID:946493655,項目名稱:culture,代碼行數:7,代碼來源:BaseController.php

示例12: __construct

 public function __construct()
 {
     Stripe::setApiVersion(config('services.stripe.api_version'));
     $this->middleware('auth');
     $this->postman = new Postman();
     parent::__construct();
 }
開發者ID:WendyMcF,項目名稱:Sidequest,代碼行數:7,代碼來源:SubscriptionController.php

示例13:

 function __construct()
 {
     parent::__construct();
     if (!$this->isAdmin($this->getLoggedInUser())) {
         throw new \Exception("Not allowed, only admin has access", 401);
     }
 }
開發者ID:thabung,項目名稱:serveaseme,代碼行數:7,代碼來源:AdminController.php

示例14: __construct

 public function __construct(UserRepository $user, RoleRepository $role, PermissionRepository $perms)
 {
     parent::__construct();
     $this->user = $user;
     $this->role = $role;
     $this->permission = $perms;
 }
開發者ID:vnzacky,項目名稱:dog,代碼行數:7,代碼來源:UserController.php

示例15: __construct

 public function __construct(Request $request)
 {
     parent::__construct($request);
     if (Auth::user()->role != "supadmin") {
         abort(402, "Unauthorized");
     }
 }
開發者ID:svetlinyotov,項目名稱:Timeline_v2.0,代碼行數:7,代碼來源:CompaniesController.php


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