
| Current Path : /var/www/html/store1/vendor/chi-teck/drupal-code-generator/src/Command/Console/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/store1/vendor/chi-teck/drupal-code-generator/src/Command/Console/DcgCommand.php |
<?php declare(strict_types=1);
namespace DrupalCodeGenerator\Command\Console;
use DrupalCodeGenerator\Application;
use DrupalCodeGenerator\Command\Generator;
use DrupalCodeGenerator\Utils;
/**
* Implements console:dcg-command command.
*
* @todo Test this manually.
*/
final class DcgCommand extends Generator {
protected string $name = 'console:dcg-command';
protected string $description = 'Generates DCG command';
protected string $alias = 'dcg-command';
protected string $label = 'DCG command';
protected string $templatePath = Application::TEMPLATE_PATH . '/console/dcg-command';
/**
* {@inheritdoc}
*/
protected function generate(array &$vars): void {
$command_name_validator = static fn (?string $value): ?string
=> self::validate($value, '^[a-z][a-z0-9-_:]*[a-z0-9]$', 'The value is not correct command name.');
$vars['command_name'] = $this->ask('Command name', 'custom:example', $command_name_validator);
$vars['description'] = $this->ask('Command description');
$sub_names = \explode(':', $vars['command_name']);
$short_name = \array_pop($sub_names);
$alias_validator = static fn (?string $value): ?string
=> self::validate($value, '^[a-z0-9][a-z0-9_]+$', 'The value is not correct alias name.');
$vars['alias'] = $this->ask('Command alias', $short_name, $alias_validator);
$vars['class'] = Utils::camelize($short_name);
$vars['namespace'] = 'DrupalCodeGenerator';
$vars['template_name'] = $short_name;
$vars['path'] = '';
$file_path = '';
if ($sub_names) {
$vars['namespace'] .= '\\' . \implode('\\', $sub_names);
$file_path = \implode(\DIRECTORY_SEPARATOR, $sub_names);
$vars['path'] = '/' . $file_path;
}
$this->addFile($file_path . '/{class}.php', 'command');
$this->addFile($file_path . '/{template_name}.twig', 'template');
}
}