ExportCommand.php in Configuration Split 8
Namespace
Drupal\config_split\CommandFile
src/Command/ExportCommand.phpView source
<?php
namespace Drupal\config_split\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
// @codingStandardsIgnoreStart
use Drupal\Console\Annotations\DrupalCommand;
// @codingStandardsIgnoreEND
/**
* Class ExportCommand.
*
* @package Drupal\config_split
*
* @DrupalCommand (
* extension="config_split",
* extensionType="module"
* )
*/
class ExportCommand extends SplitCommandBase {
/**
* {@inheritdoc}
*/
protected function configure() {
$this
->setName('config_split:export')
->setAliases([
'csex',
])
->setDescription($this
->trans('commands.config_split.export.description'))
->addOption('split', NULL, InputOption::VALUE_OPTIONAL);
}
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output) {
try {
// Make the magic happen.
$this->cliService
->ioExport($input
->getOption('split'), $this
->getIo(), [
$this,
't',
], $input
->getOption('yes'));
} catch (\Exception $e) {
$this
->getIo()
->error($e
->getMessage());
}
}
}
Classes
Name | Description |
---|---|
ExportCommand | Class ExportCommand. |