W3cubDocs

/Drupal 8

public function ConstraintManager::processDefinition

public ConstraintManager::processDefinition(&$definition, $plugin_id)

Performs extra processing on plugin definitions.

By default we add defaults for the type to the definition. If a type has additional processing logic they can do that by replacing or extending the method.

Overrides DefaultPluginManager::processDefinition

File

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

Class

ConstraintManager
Constraint plugin manager.

Namespace

Drupal\Core\Validation

Code

public function processDefinition(&$definition, $plugin_id) {
  // Make sure 'type' is set and either an array or FALSE.
  if ($definition['type'] !== FALSE && !is_array($definition['type'])) {
    $definition['type'] = array($definition['type']);
  }
}

© 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::processDefinition/8.1.x