function DisplayPluginBase::isMoreEnabled
Overrides DisplayPluginInterface::isMoreEnabled
3 calls to DisplayPluginBase::isMoreEnabled()
- DisplayPluginBase::preExecute in core/
modules/ views/ src/ Plugin/ views/ display/ DisplayPluginBase.php - Sets up any variables on the view prior to execution.
- DisplayPluginBase::renderMoreLink in core/
modules/ views/ src/ Plugin/ views/ display/ DisplayPluginBase.php - Renders the 'more' link.
- DisplayPluginBase::validate in core/
modules/ views/ src/ Plugin/ views/ display/ DisplayPluginBase.php - Validate that the plugin is correct and can be saved.
File
-
core/
modules/ views/ src/ Plugin/ views/ display/ DisplayPluginBase.php, line 336
Class
- DisplayPluginBase
- Base class for views display plugins.
Namespace
Drupal\views\Plugin\views\displayCode
public function isMoreEnabled() {
if ($this->usesMore()) {
return $this->getOption('use_more');
}
return FALSE;
}