protected function CheckProvider::loadDynamicRequirementMap

protected CheckProvider::loadDynamicRequirementMap()

Compiles a mapping of requirement keys to access checker service IDs.

File

core/lib/Drupal/Core/Access/CheckProvider.php, line 145

Class

CheckProvider
Loads access checkers from the container.

Namespace

Drupal\Core\Access

Code

protected function loadDynamicRequirementMap() {
  if (isset($this->dynamicRequirementMap)) {
    return;
  }

  // Set them here, so we can use the isset() check above.
  $this->dynamicRequirementMap = array();

  foreach ($this->checkIds as $service_id) {
    if (empty($this->checks[$service_id])) {
      $this->loadCheck($service_id);
    }

    // Add the service ID to an array that will be iterated over.
    if ($this->checks[$service_id] instanceof AccessCheckInterface) {
      $this->dynamicRequirementMap[] = $service_id;
    }
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Access!CheckProvider.php/function/CheckProvider::loadDynamicRequirementMap/8.1.x