public function OfficeHoursItem::getConstraints in Office Hours 8
Gets a list of validation constraints.
Return value
array Array of constraints, each being an instance of \Symfony\Component\Validator\Constraint.
Overrides TypedData::getConstraints
File
- src/
Plugin/ Field/ FieldType/ OfficeHoursItem.php, line 241
Class
- OfficeHoursItem
- Plugin implementation of the 'office_hours' field type.
Namespace
Drupal\office_hours\Plugin\Field\FieldTypeCode
public function getConstraints() {
$constraints = [];
// @todo When adding parent::getConstraints(), only English is allowed...
// $constraints = parent::getConstraints();
$max_length = $this
->getSetting('max_length');
if ($max_length) {
$constraint_manager = \Drupal::typedDataManager()
->getValidationConstraintManager();
$constraints[] = $constraint_manager
->create('ComplexData', [
'value' => [
'Length' => [
'max' => $max_length,
'maxMessage' => $this
->t('%name: may not be longer than @max characters.', [
'%name' => $this
->getFieldDefinition()
->getLabel(),
'@max' => $max_length,
]),
],
],
]);
}
return $constraints;
}