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