You are here

public static function RenderElement::processAjaxForm in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Render/Element/RenderElement.php \Drupal\Core\Render\Element\RenderElement::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

self::preRenderAjaxForm()

File

core/lib/Drupal/Core/Render/Element/RenderElement.php, line 233
Contains \Drupal\Core\Render\Element\RenderElement.

Class

RenderElement
Provides a base class for render element plugins.

Namespace

Drupal\Core\Render\Element

Code

public static function processAjaxForm(&$element, FormStateInterface $form_state, &$complete_form) {
  return static::preRenderAjaxForm($element);
}