File manager - Edit - /var/www/payraty/hris/vendor/nwidart/laravel-modules/src/Commands/Make/ControllerMakeCommand.php
Back
<?php namespace Nwidart\Modules\Commands\Make; use Illuminate\Support\Str; use Nwidart\Modules\Support\Config\GenerateConfigReader; use Nwidart\Modules\Support\Stub; use Nwidart\Modules\Traits\ModuleCommandTrait; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputOption; class ControllerMakeCommand extends GeneratorCommand { use ModuleCommandTrait; /** * The name of argument being used. * * @var string */ protected $argumentName = 'controller'; /** * The console command name. * * @var string */ protected $name = 'module:make-controller'; /** * The console command description. * * @var string */ protected $description = 'Generate new restful controller for the specified module.'; /** * Get controller name. * * @return string */ public function getDestinationFilePath() { $path = $this->laravel['modules']->getModulePath($this->getModuleName()); $controllerPath = GenerateConfigReader::read('controller'); return $path.$controllerPath->getPath().'/'.$this->getControllerName().'.php'; } /** * @return string */ protected function getTemplateContents() { $module = $this->laravel['modules']->findOrFail($this->getModuleName()); return (new Stub($this->getStubName(), [ 'MODULENAME' => $module->getStudlyName(), 'CONTROLLERNAME' => $this->getControllerName(), 'NAMESPACE' => $module->getStudlyName(), 'CLASS_NAMESPACE' => $this->getClassNamespace($module), 'CLASS' => $this->getControllerNameWithoutNamespace(), 'LOWER_NAME' => $module->getLowerName(), 'MODULE' => $this->getModuleName(), 'NAME' => $this->getModuleName(), 'STUDLY_NAME' => $module->getStudlyName(), 'MODULE_NAMESPACE' => $this->laravel['modules']->config('namespace'), ]))->render(); } /** * Get the console command arguments. * * @return array */ protected function getArguments() { return [ ['controller', InputArgument::REQUIRED, 'The name of the controller class.'], ['module', InputArgument::OPTIONAL, 'The name of module will be used.'], ]; } /** * @return array */ protected function getOptions() { return [ ['plain', 'p', InputOption::VALUE_NONE, 'Generate a plain controller', null], ['api', null, InputOption::VALUE_NONE, 'Exclude the create and edit methods from the controller.'], ['invokable', 'i', InputOption::VALUE_NONE, 'Generate a single method, invokable controller class'], ]; } /** * @return array|string */ protected function getControllerName() { $controller = Str::studly($this->argument('controller')); if (Str::contains(strtolower($controller), 'controller') === false) { $controller .= 'Controller'; } return $controller; } /** * @return array|string */ private function getControllerNameWithoutNamespace() { return class_basename($this->getControllerName()); } public function getDefaultNamespace(): string { return config('modules.paths.generator.controller.namespace') ?? ltrim(config('modules.paths.generator.controller.path', 'Http/Controllers'), config('modules.paths.app_folder')); } /** * Get the stub file name based on the options * * @return string */ protected function getStubName() { if ($this->option('plain') === true) { $stub = '/controller-plain.stub'; } elseif ($this->option('api') === true) { $stub = '/controller-api.stub'; } elseif ($this->option('invokable') === true) { $stub = '/controller.invokable.stub'; } else { $stub = '/controller.stub'; } return $stub; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings