PDF rausgenommen
This commit is contained in:
46
msd2/tracking/piwik/core/Plugin/ConsoleCommand.php
Normal file
46
msd2/tracking/piwik/core/Plugin/ConsoleCommand.php
Normal file
@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/**
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
*/
|
||||
namespace Piwik\Plugin;
|
||||
|
||||
use Symfony\Component\Console\Command\Command as SymfonyCommand;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
/**
|
||||
* The base class for console commands.
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
class ConsoleCommand extends SymfonyCommand
|
||||
{
|
||||
public function writeSuccessMessage(OutputInterface $output, $messages)
|
||||
{
|
||||
$output->writeln('');
|
||||
|
||||
foreach ($messages as $message) {
|
||||
$output->writeln('<info>' . $message . '</info>');
|
||||
}
|
||||
|
||||
$output->writeln('');
|
||||
}
|
||||
|
||||
protected function checkAllRequiredOptionsAreNotEmpty(InputInterface $input)
|
||||
{
|
||||
$options = $this->getDefinition()->getOptions();
|
||||
|
||||
foreach ($options as $option) {
|
||||
$name = $option->getName();
|
||||
$value = $input->getOption($name);
|
||||
|
||||
if ($option->isValueRequired() && empty($value)) {
|
||||
throw new \InvalidArgumentException(sprintf('The required option --%s is not set', $name));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user