Exemple #1
0
 function bootstrap_drupal_full()
 {
     if (!drush_get_context('DRUSH_QUIET', FALSE)) {
         ob_start();
     }
     $this->kernel->boot();
     $this->kernel->prepareLegacyRequest($this->request);
     if (!drush_get_context('DRUSH_QUIET', FALSE)) {
         ob_end_clean();
     }
     parent::bootstrap_drupal_full();
 }
Exemple #2
0
 function bootstrap_drupal_full()
 {
     drush_log(dt('About to bootstrap the Drupal 8 Kernel.'), LogLevel::DEBUG);
     // TODO: do we need to do ob_start any longer?
     if (!drush_get_context('DRUSH_QUIET', FALSE)) {
         ob_start();
     }
     $this->kernel->invalidateContainer();
     $this->kernel->boot();
     $this->kernel->prepareLegacyRequest($this->request);
     if (!drush_get_context('DRUSH_QUIET', FALSE)) {
         ob_end_clean();
     }
     drush_log(dt('Finished bootstraping the Drupal 8 Kernel.'), LogLevel::DEBUG);
     parent::bootstrap_drupal_full();
     // Get a list of the modules to ignore
     $ignored_modules = drush_get_option_list('ignored-modules', array());
     // We have to get the service command list from the container, because
     // it is constructed in an indirect way during the container initialization.
     // The upshot is that the list of console commands is not available
     // until after $kernel->boot() is called.
     $container = \Drupal::getContainer();
     $serviceCommandlist = $container->get('drush.service.consolecommands');
     foreach ($serviceCommandlist->getCommandList() as $command) {
         if (!$this->commandIgnored($command, $ignored_modules)) {
             drush_log(dt('Add a command: !name', ['!name' => $command->getName()]), LogLevel::DEBUG);
             drush_add_command_to_application(\Drush::getContainer(), $command);
         }
     }
     // Do the same thing with the annotation commands.
     $serviceCommandlist = $container->get('drush.service.consolidationcommands');
     foreach ($serviceCommandlist->getCommandList() as $commandhandler) {
         if (!$this->commandIgnored($commandhandler, $ignored_modules)) {
             drush_log(dt('Add a commandhandler: !name', ['!name' => get_class($commandhandler)]), LogLevel::DEBUG);
             drush_create_commands_from_command_instance(\Drush::getContainer(), $commandhandler);
         }
     }
 }