• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Routing\Controller类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中Illuminate\Routing\Controller的典型用法代码示例。如果您正苦于以下问题:PHP Controller类的具体用法?PHP Controller怎么用?PHP Controller使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



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

示例1: assign

 /**
  * Register the spamguard middleware on a controller.
  *
  * @param  Controller $controller
  * @param  array $actions
  * @param  array $elements
  * @return void
  */
 public function assign(Controller $controller, $actions = [], $elements = [])
 {
     $elements = $elements ?: Config::$elements;
     foreach ($elements as $middleware) {
         $controller->middleware($middleware, $actions);
     }
 }
开发者ID:ryanwinchester,项目名称:laravel-spamguard,代码行数:15,代码来源:MiddlewareAssigner.php


示例2: injectControllerDependencies

 /**
  * Inject the controller dependencies into the controller instance.
  *
  * @param \Illuminate\Routing\Controller $instance
  *
  * @return void
  */
 protected function injectControllerDependencies($instance)
 {
     try {
         $instance->setDispatcher($this->container['api.dispatcher']);
         $instance->setAuthenticator($this->container['api.auth']);
         $instance->setResponseFactory($this->container['api.response']);
     } catch (BadMethodCallException $exception) {
         // This controller does not utilize the trait.
     }
 }
开发者ID:jacobDaeHyung,项目名称:api,代码行数:17,代码来源:ControllerDispatcher.php


示例3: makeController

 /**
  * Make a controller instance via the IoC container.
  *
  * @param  string  $controller
  * @return mixed
  */
 protected function makeController($controller)
 {
     if ($this->creator) {
         Controller::setRouter($this->router);
         return $this->creator->createController($controller, $this->getPage());
     }
     return parent::makeController($controller);
 }
开发者ID:realholgi,项目名称:cmsable,代码行数:14,代码来源:ControllerDispatcher.php


示例4: getMiddleware

 /**
  * Get the middleware for the controller instance.
  *
  * @param  \Illuminate\Routing\Controller  $instance
  * @param  string  $method
  * @return array
  */
 protected function getMiddleware($instance, $method)
 {
     $results = new Collection();
     foreach ($instance->getMiddleware() as $name => $options) {
         if (!$this->methodExcludedByOptions($method, $options)) {
             $results[] = $this->router->resolveMiddlewareClassName($name);
         }
     }
     return $results->flatten()->all();
 }
开发者ID:musefind,项目名称:framework,代码行数:17,代码来源:ControllerDispatcher.php


示例5: getCurrentController

 /**
  * Get an instance of the possible current controller
  * being executed for the current route.
  *
  * @return mixed
  */
 protected function getCurrentController()
 {
     $router = $this->app->make('router');
     $route = $router->currentRouteAction();
     if (($pos = strpos($route, '@')) !== false) {
         Controller::setFilterer($router);
         $controllerName = substr($route, 0, $pos);
         return $this->app[$controllerName];
     }
 }
开发者ID:mpedrera,项目名称:themify,代码行数:16,代码来源:Resolver.php


示例6: getMiddleware

 /**
  * Get the middleware for the controller instance.
  *
  * @param  \Illuminate\Routing\Controller  $instance
  * @param  string  $method
  * @return array
  */
 protected function getMiddleware($instance, $method)
 {
     $middleware = $this->router->getMiddleware();
     $results = [];
     foreach ($instance->getMiddleware() as $name => $options) {
         if (!$this->methodExcludedByOptions($method, $options)) {
             $results[] = array_get($middleware, $name, $name);
         }
     }
     return $results;
 }
开发者ID:betes-curieuses-design,项目名称:ElieJosiePhotographie,代码行数:18,代码来源:ControllerDispatcher.php


示例7: makeController

 /**
  * Make a controller instance via the IoC container.
  *
  * @param  string  $controller
  * @return mixed
  */
 protected function makeController($controller)
 {
     Controller::setRouter($this->router);
     return $this->container->make($controller);
 }
开发者ID:musefind,项目名称:framework,代码行数:11,代码来源:ControllerDispatcher.php


示例8: pushRouteMiddleware

 /** @inheritdoc */
 public function pushRouteMiddleware(Controller $controller)
 {
     foreach ($this->routeMiddleware as $_middleware) {
         $controller->middleware($_middleware);
     }
     return $this;
 }
开发者ID:rajeshpillai,项目名称:df-managed,代码行数:8,代码来源:ClusterService.php


示例9: makeController

 /**
  * Make a controller instance via the IoC container.
  *
  * @param  string  $controller
  * @return mixed
  */
 protected function makeController($controller)
 {
     Controller::setFilterer($this->filterer);
     return $this->container->make($controller)->setContainer($this->container);
 }
开发者ID:AlexCutts,项目名称:framework,代码行数:11,代码来源:ControllerDispatcher.php


示例10: assignAfter

 /**
  * Apply the applicable after filters to the route.
  *
  * @param  \Illuminate\Routing\Controller  $instance
  * @param  \Illuminate\Routing\Route  $route
  * @param  \Illuminate\Http\Request  $request
  * @param  string  $method
  * @return mixed
  */
 protected function assignAfter($instance, $route, $request, $method)
 {
     foreach ($instance->getAfterFilters() as $filter) {
         // If the filter applies, we will add it to the route, since it has already been
         // registered on the filterer by the controller, and will just let the normal
         // router take care of calling these filters so we do not duplicate logics.
         if ($this->filterApplies($filter, $request, $method)) {
             $route->after($this->getAssignableAfter($filter));
         }
     }
 }
开发者ID:AlexCutts,项目名称:framework,代码行数:20,代码来源:ControllerDispatcher.php


示例11: getControllerMiddlewareFromInstance

 /**
  * Get the middlewares for the given controller instance and method.
  *
  * @param  \Illuminate\Routing\Controller  $controller
  * @param  string  $method
  * @return array
  */
 protected function getControllerMiddlewareFromInstance($controller, $method)
 {
     $middleware = $this->router->getMiddleware();
     $results = [];
     foreach ($controller->getMiddleware() as $name => $options) {
         if (!$this->methodExcludedByOptions($method, $options)) {
             $results[] = Arr::get($middleware, $name, $name);
         }
     }
     return $results;
 }
开发者ID:mlntn,项目名称:lumen-artisan-route-list,代码行数:18,代码来源:RouteList.php


示例12: reviseProtection

 /**
  * Revise the protected state of a controller method.
  *
  * @param \Dingo\Api\Routing\Route       $action
  * @param \Illuminate\Routing\Controller $controller
  * @param string                         $method
  *
  * @return void
  */
 protected function reviseProtection(Route $route, $controller, $method)
 {
     $properties = $controller->getProperties();
     if (isset($properties['*']['protected'])) {
         $route->setProtected($properties['*']['protected']);
     }
     if (isset($properties[$method]['protected'])) {
         $route->setProtected($properties[$method]['protected']);
     }
 }
开发者ID:jacobDaeHyung,项目名称:api,代码行数:19,代码来源:ControllerReviser.php


示例13: callAction

 /**
  * Execute an action on the controller.
  *
  * @param string $method
  * @param array  $parameters
  * @return \Illuminate\Http\Response
  */
 public function callAction($method, $parameters)
 {
     $rMethod = new ReflectionMethod($this, $method);
     $resolver = new MethodArgumentResolver($this->container);
     return Controller::callAction($method, $resolver->resolve($rMethod, $parameters));
 }
开发者ID:jeremyworboys,项目名称:containeraware,代码行数:13,代码来源:ContainerAwareController.php


示例14: __call

 /**
  * Implements convenient method of calling static methods from
  * controller's model.
  *
  * @return mixed
  */
 public function __call($method, $args)
 {
     if (preg_match('/^staticModel([a-zA-Z0-9]+)$/', $method, $m)) {
         $modelClass = $this->getModelClass();
         $modelMethod = lcfirst($m[1]);
         return call_user_func_array(array($modelClass, $modelMethod), $args);
     }
     return parent::__call($method, $args);
 }
开发者ID:idealogica,项目名称:lavanda,代码行数:15,代码来源:Controller.php


示例15: callAction

 /**
  * Execute an action on the controller.
  *
  * And is fired pre and post events on controller
  *
  * @param  string $method
  * @param  array $parameters
  * @return \Symfony\Component\HttpFoundation\Response
  */
 public function callAction($method, $parameters)
 {
     $this->beforeCallAction($method);
     $this->response = parent::callAction($method, $parameters);
     $this->afterCallAction($method);
     return $this->response;
 }
开发者ID:lava83,项目名称:lavaproto,代码行数:16,代码来源:Controller.php


示例16: callAction

 /**
  * Calls controller action.
  *
  * @param string $method
  * @param array $parameters
  * @return mixed
  */
 public function callAction($method, array $parameters = [])
 {
     $isAjax = app()->make('request')->ajax();
     $method = $this->checkAjaxMethod($method, $isAjax);
     $parameters = $this->checkParametersResolving($method, $parameters);
     return parent::callAction($method, $parameters);
 }
开发者ID:laravel-commode,项目名称:common,代码行数:14,代码来源:CommodeController.php


示例17: callAction

 /**
  * @param string $method
  * @param array  $routingParameters
  * @return \Illuminate\View\View|mixed
  */
 public function callAction($method, $routingParameters)
 {
     $objects = [];
     $this->setupLayout();
     try {
         $methodParams = $this->detectParameters($method);
     } catch (ReflectionException $ex) {
         return parent::callAction($method, $routingParameters);
     }
     foreach ($routingParameters as $rpKey => $rpValue) {
         if (is_object($rpValue)) {
             $objects[get_class($rpValue)] = $rpValue;
             unset($routingParameters[$rpKey]);
         }
     }
     $parameters = array_merge($this->matchClasses($methodParams, $objects), $routingParameters);
     $response = call_user_func_array(array($this, $method), $parameters);
     // If no response is returned from the controller action and a layout is being
     // used we will assume we want to just return the layout view as any nested
     // views were probably bound on this view during this controller actions.
     if (is_null($response) && !is_null($this->layout)) {
         $response = $this->layout;
     }
     return $response;
 }
开发者ID:mrsimonbennett,项目名称:dipr,代码行数:30,代码来源:Controller.php


示例18: __call

 public function __call($method, $parameters)
 {
     if (starts_with($method, 'respond')) {
         $responseBuilder = new ResponseBuilder($this->format, ['only' => $this->only, 'modelName' => $this->getModelName(), 'includes' => $this->request->has('includes') ? $this->request->get('includes') : []]);
         return call_user_func_array([$responseBuilder, $method], $parameters);
     }
     return parent::__call($method, $parameters);
 }
开发者ID:efrane,项目名称:transfugio,代码行数:8,代码来源:APIController.php


示例19: callAction

 /**
  * Execute an action on the controller.
  *
  * @param  string  $method
  * @param  array   $parameters
  * @return \Symfony\Component\HttpFoundation\Response
  */
 public function callAction($method, $parameters)
 {
     $result = parent::callAction($method, $parameters);
     if (app('ajax.helper')->isFrameworkAjax()) {
         $result = $this->prepareAjaxActionResponse($result);
     }
     return $result;
 }
开发者ID:true-agency,项目名称:solid,代码行数:15,代码来源:Controller.php


示例20: edit

 public function edit($entity)
 {
     parent::edit($entity);
     $this->edit = \DataEdit::source(new \User());
     $this->edit->label('Edit User');
     $this->edit->link("rapyd-demo/filter", "Articles", "TR")->back();
     $this->edit->add('name', 'Name', 'text')->rule('required|min:5');
     $this->edit->add('username', 'userame', 'text')->rule('required|min:5');
     return $this->returnEditView();
 }
开发者ID:aoslee,项目名称:panel,代码行数:10,代码来源:UsersController.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Routing\Redirector类代码示例发布时间:2022-05-23
下一篇:
PHP Redis\Database类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap