public function DisplayPluginBase::isMoreEnabled 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::isMoreEnabled()
Whether the display is using the 'more' link or not.
Return value
bool
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 328
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;
}