chainQueue = $chainQueue; $this->generator = $generator; $this->extensionManager = $extensionManager; $this->stringConverter = $stringConverter; $this->validator = $validator; parent::__construct(); } protected function configure() { $this ->setName('generate:plugin:ckeditorbutton') ->setDescription($this->trans('commands.generate.plugin.ckeditorbutton.description')) ->setHelp($this->trans('commands.generate.plugin.ckeditorbutton.help')) ->addOption( 'module', null, InputOption::VALUE_REQUIRED, $this->trans('commands.common.options.module') ) ->addOption( 'class', null, InputOption::VALUE_REQUIRED, $this->trans('commands.generate.plugin.ckeditorbutton.options.class') ) ->addOption( 'label', null, InputOption::VALUE_REQUIRED, $this->trans('commands.generate.plugin.ckeditorbutton.options.label') ) ->addOption( 'plugin-id', null, InputOption::VALUE_REQUIRED, $this->trans('commands.generate.plugin.ckeditorbutton.options.plugin-id') ) ->addOption( 'button-name', null, InputOption::VALUE_REQUIRED, $this->trans('commands.generate.plugin.ckeditorbutton.options.button-name') ) ->addOption( 'button-icon-path', null, InputOption::VALUE_REQUIRED, $this->trans('commands.generate.plugin.ckeditorbutton.options.button-icon-path') )->setAliases(['gpc']); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { // @see use Drupal\Console\Command\Shared\ConfirmationTrait::confirmOperation if (!$this->confirmOperation()) { return 1; } $module = $input->getOption('module'); $class_name = $this->validator->validateClassName($input->getOption('class')); $label = $input->getOption('label'); $plugin_id = $input->getOption('plugin-id'); $button_name = $input->getOption('button-name'); $button_icon_path = $input->getOption('button-icon-path'); $this->generator->generate([ 'module' => $module, 'class_name' => $class_name, 'label' => $label, 'plugin_id' => $plugin_id, 'button_name' => $button_name, 'button_icon_path' => $button_icon_path, ]); $this->chainQueue->addCommand('cache:rebuild', ['cache' => 'discovery'], false); return 0; } protected function interact(InputInterface $input, OutputInterface $output) { // --module option $module = $this->getModuleOption(); // --class option $class_name = $input->getOption('class'); if (!$class_name) { $class_name = $this->getIo()->ask( $this->trans('commands.generate.plugin.ckeditorbutton.questions.class'), 'DefaultCKEditorButton', function ($class_name) { return $this->validator->validateClassName($class_name); } ); $input->setOption('class', $class_name); } // --label option $label = $input->getOption('label'); if (!$label) { $label = $this->getIo()->ask( $this->trans('commands.generate.plugin.ckeditorbutton.questions.label'), $this->stringConverter->camelCaseToHuman($class_name) ); $input->setOption('label', $label); } // --plugin-id option $plugin_id = $input->getOption('plugin-id'); if (!$plugin_id) { $plugin_id = $this->getIo()->ask( $this->trans('commands.generate.plugin.ckeditorbutton.questions.plugin-id'), $this->stringConverter->camelCaseToLowerCase($label) ); $input->setOption('plugin-id', $plugin_id); } // --button-name option $button_name = $input->getOption('button-name'); if (!$button_name) { $button_name = $this->getIo()->ask( $this->trans('commands.generate.plugin.ckeditorbutton.questions.button-name'), $this->stringConverter->anyCaseToUcFirst($plugin_id) ); $input->setOption('button-name', $button_name); } // --button-icon-path option $button_icon_path = $input->getOption('button-icon-path'); if (!$button_icon_path) { $button_icon_path = $this->getIo()->ask( $this->trans('commands.generate.plugin.ckeditorbutton.questions.button-icon-path'), drupal_get_path('module', $module) . '/js/plugins/' . $plugin_id . '/images/icon.png' ); $input->setOption('button-icon-path', $button_icon_path); } } }