public function DisplayPluginBase::usesAJAX

Whether the display allows the use of AJAX or not.

Return value

bool

2 calls to DisplayPluginBase::usesAJAX()
DisplayPluginBase::ajaxEnabled in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Whether the display is actually using AJAX or not.
DisplayPluginBase::optionsSummary in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Provide the default summary for options in the views UI.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php, line 241
Contains Drupal\views\Plugin\views\display\DisplayPluginBase.

Class

DisplayPluginBase
The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.

Namespace

Drupal\views\Plugin\views\display

Code

public function usesAJAX() {
  return $this->usesAJAX;
}