W3cubDocs

/Drupal 8

protected function ConstraintManager::getDiscovery

protected ConstraintManager::getDiscovery()

Gets the plugin discovery.

Return value

\Drupal\Component\Plugin\Discovery\DiscoveryInterface

Overrides DefaultPluginManager::getDiscovery

File

core/lib/Drupal/Core/Validation/ConstraintManager.php, line 51

Class

ConstraintManager
Constraint plugin manager.

Namespace

Drupal\Core\Validation

Code

protected function getDiscovery() {
  if (!isset($this->discovery)) {
    $this->discovery = parent::getDiscovery();
    $this->discovery = new StaticDiscoveryDecorator($this->discovery, [$this, 'registerDefinitions']);
  }
  return $this->discovery;
}

© 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!Validation!ConstraintManager.php/function/ConstraintManager::getDiscovery/8.1.x