function 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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.