W3cubDocs

/Drupal 8

public function ConstraintManager::create

public ConstraintManager::create($name, $options)

Creates a validation constraint.

Parameters

string $name: The name or plugin id of the constraint.

mixed $options: The options to pass to the constraint class. Required and supported options depend on the constraint class.

Return value

\Symfony\Component\Validator\Constraint A validation constraint plugin.

File

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

Class

ConstraintManager
Constraint plugin manager.

Namespace

Drupal\Core\Validation

Code

public function create($name, $options) {
  if (!is_array($options)) {
    // Plugins need an array as configuration, so make sure we have one.
    // The constraint classes support passing the options as part of the
    // 'value' key also.
    $options = isset($options) ? array('value' => $options) : array();
  }
  return $this->createInstance($name, $options);
}

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