function Ajax::getInfo

File

core/lib/Drupal/Core/Render/Element/Ajax.php, line 19

Class

Ajax
Provides a render element for adding Ajax to a render element.

Namespace

Drupal\Core\Render\Element

Code

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,
  ];
}

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