作者:ryanwincheste
项目:laravel-spamguar
/**
* 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);
}
}
作者:jacobDaeHyun
项目:ap
/**
* 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.
}
}
作者:realholg
项目:cmsabl
/**
* 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);
}
作者:musefin
项目:framewor
/**
* 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();
}
作者:mpedrer
项目:themif
/**
* 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];
}
}
作者:betes-curieuses-desig
项目:ElieJosiePhotographi
/**
* 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;
}
作者:musefin
项目:framewor
/**
* 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);
}
作者:rajeshpilla
项目:df-manage
/** @inheritdoc */
public function pushRouteMiddleware(Controller $controller)
{
foreach ($this->routeMiddleware as $_middleware) {
$controller->middleware($_middleware);
}
return $this;
}
作者:AlexCutt
项目:framewor
/**
* 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);
}
作者:AlexCutt
项目:framewor
/**
* 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));
}
}
}
作者:mlnt
项目:lumen-artisan-route-lis
/**
* 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;
}
作者:jacobDaeHyun
项目:ap
/**
* 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']);
}
}
作者:jeremyworboy
项目:containerawar
/**
* 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));
}
作者:idealogic
项目:lavand
/**
* 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);
}
作者:lava8
项目:lavaprot
/**
* 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;
}
作者:laravel-commod
项目:commo
/**
* 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);
}
作者:mrsimonbennet
项目:dip
/**
* @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;
}
作者:efran
项目:transfugi
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);
}
作者:true-agenc
项目:soli
/**
* 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;
}
作者:aosle
项目:pane
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();
}