
| Current Path : /var/www/html/ift/vendor/chi-teck/drupal-code-generator/src/Command/Other/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/ift/vendor/chi-teck/drupal-code-generator/src/Command/Other/HtmlPage.php |
<?php
namespace DrupalCodeGenerator\Command\Other;
use DrupalCodeGenerator\Command\BaseGenerator;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Question\Question;
/**
* Implements other:html-page command.
*/
class HtmlPage extends BaseGenerator {
protected $name = 'other:html-page';
protected $description = 'Generates a simple html page';
protected $alias = 'html-page';
protected $label = 'HTML page';
protected $destination = FALSE;
/**
* {@inheritdoc}
*/
protected function interact(InputInterface $input, OutputInterface $output) {
$questions['file_name'] = new Question('File name', 'index.html');
$this->collectVars($input, $output, $questions);
$this->addFile()
->path('{file_name}')
->template('other/html.twig');
$this->addFile()
->path('css/main.css')
->content("body{\n background-color: #EEE;\n}\n");
$this->addFile()
->path('js/main.js')
->content("console.log('It works!');\n");
}
}