File manager - Edit - /home/linknsbh/cecil-hotel.net/platform/packages/theme/src/Commands/ThemeRemoveCommand.php
Back
<?php namespace Botble\Theme\Commands; use Botble\Theme\Commands\Traits\ThemeTrait; use Botble\Theme\Services\ThemeService; use Illuminate\Console\Command; use Illuminate\Console\ConfirmableTrait; use Illuminate\Contracts\Console\PromptsForMissingInput; use Symfony\Component\Console\Attribute\AsCommand; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputOption; #[AsCommand('cms:theme:remove', 'Remove an existing theme')] class ThemeRemoveCommand extends Command implements PromptsForMissingInput { use ThemeTrait; use ConfirmableTrait; public function handle(ThemeService $themeService): int { if (! $this->confirmToProceed('Are you sure you want to permanently delete?', true)) { return self::FAILURE; } if (! preg_match('/^[a-z0-9\-]+$/i', $this->argument('name'))) { $this->components->error('Only alphabetic characters are allowed.'); return self::FAILURE; } $result = $themeService->remove($this->getTheme()); if ($result['error']) { $this->components->error($result['message']); return self::FAILURE; } $this->components->info($result['message']); return self::SUCCESS; } protected function configure(): void { $this->addArgument('name', InputArgument::REQUIRED, 'The theme name that you want to remove'); $this->addOption('force', 'f', null, 'Force to remove theme without confirmation'); $this->addOption('path', null, InputOption::VALUE_REQUIRED, 'Path to theme directory'); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.59 |
proxy
|
phpinfo
|
Settings