public function DisplayPluginBase::ajaxEnabled in Drupal 8
Same name and namespace in other branches
- 9 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
2 calls to DisplayPluginBase::ajaxEnabled()
- Block::usesExposed in core/
modules/ views/ src/ Plugin/ views/ display/ Block.php - Block views use exposed widgets only if AJAX is set.
- 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\displayCode
public function ajaxEnabled() {
if ($this
->usesAJAX()) {
return $this
->getOption('use_ajax');
}
return FALSE;
}