bea87b7231f4f4bf6bb1b4f27cbc08a878d06d67
[yaffs-website] / vendor / chi-teck / drupal-code-generator / src / Command / Drupal_8 / Plugin / Field / Formatter.php
1 <?php
2
3 namespace DrupalCodeGenerator\Command\Drupal_8\Plugin\Field;
4
5 use DrupalCodeGenerator\Command\BaseGenerator;
6 use DrupalCodeGenerator\Utils;
7 use Symfony\Component\Console\Input\InputInterface;
8 use Symfony\Component\Console\Output\OutputInterface;
9
10 /**
11  * Implements d8:plugin:field:formatter command.
12  */
13 class Formatter extends BaseGenerator {
14
15   protected $name = 'd8:plugin:field:formatter';
16   protected $description = 'Generates field formatter plugin';
17   protected $alias = 'field-formatter';
18
19   /**
20    * {@inheritdoc}
21    */
22   protected function interact(InputInterface $input, OutputInterface $output) {
23     $questions = Utils::defaultPluginQuestions();
24
25     $vars = &$this->collectVars($input, $output, $questions);
26     $vars['class'] = Utils::camelize($vars['plugin_label'] . 'Formatter');
27
28     $this->addFile()
29       ->path('src/Plugin/Field/FieldFormatter/{class}.php')
30       ->template('d8/plugin/field/formatter.twig');
31
32     $this->addFile()
33       ->path('config/schema/{machine_name}.schema.yml')
34       ->template('d8/plugin/field/formatter-schema.twig')
35       ->action('append');
36   }
37
38 }