view vendor/chi-teck/drupal-code-generator/src/Command/Drupal_8/ThemeSettings.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
line wrap: on
line source
<?php

namespace DrupalCodeGenerator\Command\Drupal_8;

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 d8:theme-settings command.
 */
class ThemeSettings extends BaseGenerator {

  protected $name = 'd8:theme-settings';
  protected $description = 'Generates Drupal 8 theme-settings.php file';
  protected $alias = 'theme-settings';
  protected $destination = 'themes/%';

  /**
   * {@inheritdoc}
   */
  protected function interact(InputInterface $input, OutputInterface $output) {
    $questions['name'] = new Question('Theme name');
    $questions['name']->setValidator([Utils::class, 'validateRequired']);
    $questions['machine_name'] = new Question('Theme machine name');
    $questions['machine_name']->setValidator([Utils::class, 'validateMachineName']);
    $this->collectVars($input, $output, $questions);

    $this->addFile()
      ->path('theme-settings.php')
      ->template('d8/theme-settings-form.twig');

    $this->addFile()
      ->path('config/install/{machine_name}.settings.yml')
      ->template('d8/theme-settings-config.twig');

    $this->addFile()
      ->path('config/schema/{machine_name}.schema.yml')
      ->template('d8/theme-settings-schema.twig');
  }

}