Ajax.php

Same filename in other branches
  1. 8.9.x core/lib/Drupal/Core/Render/Element/Ajax.php
  2. 10 core/lib/Drupal/Core/Render/Element/Ajax.php
  3. 11.x core/lib/Drupal/Core/Render/Element/Ajax.php

Namespace

Drupal\Core\Render\Element

File

core/lib/Drupal/Core/Render/Element/Ajax.php

View source
<?php

namespace Drupal\Core\Render\Element;


/**
 * Provides a render element for adding Ajax to a render element.
 *
 * Holds an array whose values control the Ajax behavior of the element.
 *
 * @ingroup ajax
 *
 * @RenderElement("ajax")
 */
class Ajax extends RenderElement {
    
    /**
     * {@inheritdoc}
     */
    public function getInfo() {
        // By default, we don't want Ajax commands being rendered in the context of
        // an HTML page, so we don't provide defaults for #theme or #theme_wrappers.
        // However, modules can set these properties (for example, to provide an
        // HTML debugging page that displays rather than executes Ajax commands).
        return [
            '#header' => TRUE,
            '#commands' => [],
            '#error' => NULL,
        ];
    }

}

Classes

Title Deprecated Summary
Ajax Provides a render element for adding Ajax to a render element.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.