Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / src / Command / Drupal_8 / Service / EventSubscriber.php
1 <?php
2
3 namespace DrupalCodeGenerator\Command\Drupal_8\Service;
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:service:event-subscriber command.
12  */
13 class EventSubscriber extends BaseGenerator {
14
15   protected $name = 'd8:service:event-subscriber';
16   protected $description = 'Generates an event subscriber';
17   protected $alias = 'event-subscriber';
18
19   /**
20    * {@inheritdoc}
21    */
22   protected function interact(InputInterface $input, OutputInterface $output) {
23     $questions = Utils::defaultQuestions();
24
25     $vars = &$this->collectVars($input, $output, $questions);
26     $vars['class'] = Utils::camelize($vars['name'] . 'Subscriber');
27
28     $this->addFile()
29       ->path('src/EventSubscriber/{class}.php')
30       ->template('d8/service/event-subscriber.twig');
31
32     $this->addServicesFile()
33       ->template('d8/service/event-subscriber.services.twig');
34   }
35
36 }