view vendor/chi-teck/drupal-code-generator/src/Command/Other/DcgCommand.php @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children
line wrap: on
line source
<?php

namespace DrupalCodeGenerator\Command\Other;

use DrupalCodeGenerator\Command\BaseGenerator;
use DrupalCodeGenerator\Utils;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Question\Question;

/**
 * Implements other:dcg-command command.
 */
class DcgCommand extends BaseGenerator {

  protected $name = 'other:dcg-command';
  protected $description = 'Generates DCG command';
  protected $alias = 'dcg-command';
  protected $label = 'DCG command';

  /**
   * {@inheritdoc}
   */
  protected function configure() {
    $this->destination = Utils::getHomeDirectory() . '/.dcg/Command';
    parent::configure();
  }

  /**
   * {@inheritdoc}
   */
  protected function interact(InputInterface $input, OutputInterface $output) {

    $questions = [
      'name' => new Question('Command name', 'custom:example'),
      'description' => new Question('Command description', 'Some description'),
      'alias' => new Question('Command alias', 'example'),
    ];

    $vars = &$this->collectVars($input, $output, $questions);

    $sub_names = explode(':', $vars['name']);
    $last_sub_name = array_pop($sub_names);
    $vars['class'] = Utils::camelize($last_sub_name);
    $vars['namespace'] = 'DrupalCodeGenerator\Command';
    $vars['template_name'] = $last_sub_name . '.twig';

    $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()
      ->path($file_path . '/{class}.php')
      ->template('other/dcg-command.twig');

    $this->addFile()
      ->path($file_path . '/{template_name}')
      ->template('other/dcg-command-template.twig');
  }

}