You are here

public function DisplayPluginBase::ajaxEnabled in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/display/DisplayPluginBase.php \Drupal\views\Plugin\views\display\DisplayPluginBase::ajaxEnabled()

Whether the display is actually using AJAX or not.

Return value

bool

Overrides DisplayPluginInterface::ajaxEnabled

1 call to DisplayPluginBase::ajaxEnabled()
DisplayPluginBase::preExecute in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Sets up any variables on the view prior to execution.

File

core/modules/views/src/Plugin/views/display/DisplayPluginBase.php, line 284

Class

DisplayPluginBase
Base class for views display plugins.

Namespace

Drupal\views\Plugin\views\display

Code

public function ajaxEnabled() {
  if ($this
    ->usesAJAX()) {
    return $this
      ->getOption('use_ajax');
  }
  return FALSE;
}