function RenderElementBase::processAjaxForm
Same name in other branches
- 11.x core/lib/Drupal/Core/Render/Element/RenderElementBase.php \Drupal\Core\Render\Element\RenderElementBase::processAjaxForm()
Form element processing handler for the #ajax form property.
This method is useful for non-input elements that can be used in and outside the context of a form.
Parameters
array $element: An associative array containing the properties of the 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.
See also
3 calls to RenderElementBase::processAjaxForm()
- Datetime::processAjaxForm in core/
lib/ Drupal/ Core/ Datetime/ Element/ Datetime.php - Form element processing handler for the #ajax form property.
- FormElement::processAjaxForm in core/
lib/ Drupal/ Core/ Render/ Element/ FormElement.php - Form element processing handler for the #ajax form property.
- RenderElement::processAjaxForm in core/
lib/ Drupal/ Core/ Render/ Element/ RenderElement.php - Form element processing handler for the #ajax form property.
3 methods override RenderElementBase::processAjaxForm()
- Datetime::processAjaxForm in core/
lib/ Drupal/ Core/ Datetime/ Element/ Datetime.php - Form element processing handler for the #ajax form property.
- FormElement::processAjaxForm in core/
lib/ Drupal/ Core/ Render/ Element/ FormElement.php - Form element processing handler for the #ajax form property.
- RenderElement::processAjaxForm in core/
lib/ Drupal/ Core/ Render/ Element/ RenderElement.php - Form element processing handler for the #ajax form property.
File
-
core/
lib/ Drupal/ Core/ Render/ Element/ RenderElementBase.php, line 231
Class
- RenderElementBase
- Provides a base class for render element plugins.
Namespace
Drupal\Core\Render\ElementCode
public static function processAjaxForm(&$element, FormStateInterface $form_state, &$complete_form) {
return static::preRenderAjaxForm($element);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.