
| Current Path : /var/www/html_old/abc/vendor/drush/drush/src/Drupal/ |
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_old/abc/vendor/drush/drush/src/Drupal/DrushServiceModifier.php |
<?php
namespace Drush\Drupal;
use Drush\Drush;
use Drush\Log\LogLevel;
use Drupal\Core\DependencyInjection\ServiceModifierInterface;
use Drupal\Core\DependencyInjection\ContainerBuilder;
class DrushServiceModifier implements ServiceModifierInterface
{
// Holds list of command classes implementing Symfony\Console\Component\Command
const DRUSH_CONSOLE_SERVICES = 'drush.console.services';
// Holds list of command classes implemented with annotated commands
const DRUSH_COMMAND_SERVICES = 'drush.command.services';
// Holds list of command info alterer classes.
const DRUSH_COMMAND_INFO_ALTERER_SERVICES = 'drush.command_info_alterer.services';
// Holds list of classes implementing Drupal Code Generator classes
const DRUSH_GENERATOR_SERVICES = 'drush.generator.services';
/**
* @inheritdoc
*/
public function alter(ContainerBuilder $container)
{
Drush::logger()->log(LogLevel::DEBUG_NOTIFY, dt("Service modifier alter."));
// http://symfony.com/doc/2.7/components/dependency_injection/tags.html#register-the-pass-with-the-container
$container->register(self::DRUSH_CONSOLE_SERVICES, 'Drush\Command\ServiceCommandlist');
$container->addCompilerPass(new FindCommandsCompilerPass(self::DRUSH_CONSOLE_SERVICES, 'console.command'));
$container->register(self::DRUSH_COMMAND_SERVICES, 'Drush\Command\ServiceCommandlist');
$container->addCompilerPass(new FindCommandsCompilerPass(self::DRUSH_COMMAND_SERVICES, 'drush.command'));
$container->register(self::DRUSH_COMMAND_INFO_ALTERER_SERVICES, 'Drush\Command\ServiceCommandlist');
$container->addCompilerPass(new FindCommandsCompilerPass(self::DRUSH_COMMAND_INFO_ALTERER_SERVICES, 'drush.command_info_alterer'));
$container->register(self::DRUSH_GENERATOR_SERVICES, 'Drush\Command\ServiceCommandlist');
$container->addCompilerPass(new FindCommandsCompilerPass(self::DRUSH_GENERATOR_SERVICES, 'drush.generator'));
}
/**
* Checks existing service definitions for the presence of modification.
*
* @param $container_definition
* Cached container definition
* @return bool
*/
public function check($container_definition)
{
return
isset($container_definition['services'][self::DRUSH_CONSOLE_SERVICES]) &&
isset($container_definition['services'][self::DRUSH_COMMAND_SERVICES]) &&
isset($container_definition['services'][self::DRUSH_COMMAND_INFO_ALTERER_SERVICES]) &&
isset($container_definition['services'][self::DRUSH_GENERATOR_SERVICES]);
}
}