public function views_plugin_display_services::has_path in Services Views 7
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.
Overrides views_plugin_display::has_path
File
- includes/
views/ views_plugin_display_services.inc, line 18 - Contains the page display plugin.
Class
- views_plugin_display_services
- The plugin that handles a Services callback.
Code
public function has_path() {
return TRUE;
}