You are here

public function SubpathautoServiceProvider::alter in Sub-pathauto (Sub-path URL Aliases) 8

Modifies existing service definitions.

Parameters

ContainerBuilder $container: The ContainerBuilder whose service definitions can be altered.

Overrides ServiceProviderBase::alter

File

src/SubpathautoServiceProvider.php, line 17

Class

SubpathautoServiceProvider
Defines a service provider for the Subpathauto module.

Namespace

Drupal\subpathauto

Code

public function alter(ContainerBuilder $container) {

  // The alias-based processor requires the path_alias entity schema to be
  // installed, so we prevent it from being registered to the path processor
  // manager. We do this by removing the tags that the compiler pass looks
  // for. This means that the URL generator can safely be used during the
  // database update process.
  if ($container
    ->get('kernel') instanceof UpdateKernel && $container
    ->hasDefinition('path_processor_subpathauto')) {
    $container
      ->getDefinition('path_processor_subpathauto')
      ->clearTag('path_processor_inbound')
      ->clearTag('path_processor_outbound');
  }
}