1.20.x views_plugin_display.inc | views_plugin_display::has_path() |
Check to see if the display has a 'path' field.
This is a pure function and not just a setting on the definition because some displays (such as a panel pane) may have a path based upon configuration.
By default, displays do not have a path.
File
- modules/
views/ plugins/ views_plugin_display.inc, line 723 - 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 has_path() {
return FALSE;
}