You are here

class RegisterAccessChecksPass in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterAccessChecksPass.php \Drupal\Core\DependencyInjection\Compiler\RegisterAccessChecksPass
  2. 10 core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterAccessChecksPass.php \Drupal\Core\DependencyInjection\Compiler\RegisterAccessChecksPass

Adds services tagged 'access_check' to the access_manager service.

Hierarchy

  • class \Drupal\Core\DependencyInjection\Compiler\RegisterAccessChecksPass implements \Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface

Expanded class hierarchy of RegisterAccessChecksPass

1 file declares its use of RegisterAccessChecksPass
CoreServiceProvider.php in core/lib/Drupal/Core/CoreServiceProvider.php

File

core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterAccessChecksPass.php, line 11

Namespace

Drupal\Core\DependencyInjection\Compiler
View source
class RegisterAccessChecksPass implements CompilerPassInterface {

  /**
   * {@inheritdoc}
   */
  public function process(ContainerBuilder $container) {
    if (!$container
      ->hasDefinition('access_manager')) {
      return;
    }

    // Add services tagged 'access_check' to the access_manager service.
    $access_manager = $container
      ->getDefinition('access_manager.check_provider');
    foreach ($container
      ->findTaggedServiceIds('access_check') as $id => $attributes) {
      $applies = [];
      $method = 'access';
      $needs_incoming_request = FALSE;
      foreach ($attributes as $attribute) {
        if (isset($attribute['applies_to'])) {
          $applies[] = $attribute['applies_to'];
        }
        if (isset($attribute['method'])) {
          $method = $attribute['method'];
        }
        if (!empty($attribute['needs_incoming_request'])) {
          $needs_incoming_request = TRUE;
        }
      }
      $access_manager
        ->addMethodCall('addCheckService', [
        $id,
        $method,
        $applies,
        $needs_incoming_request,
      ]);
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
RegisterAccessChecksPass::process public function You can modify the container here before it is dumped to PHP code.