whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
froiden
/
laravel-rest-api
/
src
/
Routing
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/froiden/laravel-rest-api/src/Routing/ApiResourceRegistrar.php
<?php namespace Froiden\RestAPI\Routing; use Illuminate\Routing\ResourceRegistrar; use Illuminate\Support\Str; class ApiResourceRegistrar extends ResourceRegistrar { /** * The default actions for a resourceful controller. * * @var array */ protected $resourceDefaults = ['index', 'store', 'show', 'update', 'destroy', 'relation']; /** * Create a new resource registrar instance. * * @param ApiRouter|\Illuminate\Routing\Router $router */ public function __construct(ApiRouter $router) { $this->router = $router; } /** * Route a resource to a controller. * * @param string $name * @param string $controller * @param array $options * @return void */ public function register($name, $controller, array $options = []) { if (isset($options['parameters']) && ! isset($this->parameters)) { $this->parameters = $options['parameters']; } // If the resource name contains a slash, we will assume the developer wishes to // register these resource routes with a prefix so we will set that up out of // the box so they don't have to mess with it. Otherwise, we will continue. if (Str::contains($name, '/')) { $this->prefixedResource($name, $controller, $options); return; } // We need to extract the base resource from the resource name. Nested resources // are supported in the framework, but we need to know what name to use for a // place-holder on the route parameters, which should be the base resources. $base = $this->getResourceWildcard(last(explode('.', $name))); $defaults = $this->resourceDefaults; foreach ($this->getResourceMethods($defaults, $options) as $m) { $this->{'addResource'.ucfirst($m)}($name, $base, $controller, $options); } } /** * Add the relation get method for a resourceful route. * * @param string $name * @param string $base * @param string $controller * @param array $options * @return \Illuminate\Routing\Route */ protected function addResourceRelation($name, $base, $controller, $options) { $uri = $this->getResourceUri($name).'/{'.$base.'}'."/{relation}"; $action = $this->getResourceAction($name, $controller, 'relation', $options); return $this->router->get($uri, $action); } }
Copyright ©2021 || Defacer Indonesia