function views_plugin_display::use_more_always
3.x views_plugin_display.inc | views_plugin_display::use_more_always() |
2.x views_plugin_display.inc | views_plugin_display::use_more_always() |
Should the enabled display more link be shown when no more items?
2 calls to views_plugin_display::use_more_always()
- views_plugin_display::pre_execute in plugins/
views_plugin_display.inc - Set up any variables on the view prior to execution. These are separated from execute because they are extremely common and unlikely to be overridden on an individual display.
- views_plugin_display::render_more_link in plugins/
views_plugin_display.inc - Render the 'more' link
File
- plugins/
views_plugin_display.inc, line 141 - Contains the base display plugin.
Class
- views_plugin_display
- The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.
Code
function use_more_always() {
if (!empty($this->definition['use more'])) {
return $this->get_option('use_more_always');
}
return FALSE;
}