function FormElement::processPattern
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Render/Element/FormElement.php \Drupal\Core\Render\Element\FormElement::processPattern()
- 8.9.x core/lib/Drupal/Core/Render/Element/FormElement.php \Drupal\Core\Render\Element\FormElement::processPattern()
- 11.x core/lib/Drupal/Core/Render/Element/FormElement.php \Drupal\Core\Render\Element\FormElement::processPattern()
#process callback for #pattern form element property.
Parameters
array $element: An associative array containing the properties and children of the generic input element.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
array $complete_form: The complete form structure.
Return value
array The processed element.
Overrides FormElementBase::processPattern
File
-
core/
lib/ Drupal/ Core/ Render/ Element/ FormElement.php, line 76
Class
- FormElement
- Provides a base class for form element plugins.
Namespace
Drupal\Core\Render\ElementCode
public static function processPattern(&$element, FormStateInterface $form_state, &$complete_form) {
@trigger_error('\\Drupal\\Core\\Render\\Element\\FormElement::processPattern() is deprecated in drupal:10.3.0 and is removed from drupal:12.0.0. Use \\Drupal\\Core\\Render\\Element\\FormElementBase::processPattern() instead. See https://www.drupal.org/node/3436275', E_USER_DEPRECATED);
return parent::processPattern($element, $form_state, $complete_form);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.