Mercurial > hg > cmmr2012-drupal-site
view vendor/chi-teck/drupal-code-generator/src/Command/Drupal_7/ModuleInfo.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\Drupal_7; 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 d7:module-info command. */ class ModuleInfo extends BaseGenerator { protected $name = 'd7:module-info'; protected $description = 'Generates Drupal 7 info file for a module'; protected $label = 'Info (module)'; /** * {@inheritdoc} */ protected function interact(InputInterface $input, OutputInterface $output) { $questions = Utils::defaultQuestions(); $questions['description'] = new Question('Module description', 'Module description.'); $questions['package'] = new Question('Package', 'Custom'); $this->collectVars($input, $output, $questions); $this->addFile() ->path('{machine_name}.info') ->template('d7/module-info.twig'); } }