function views_CrumbsMonoPlugin_PageTitle::describe in Crumbs, the Breadcrumbs suite 7.2
Parameters
crumbs_InjectedAPI_describeMonoPlugin $api: Injected API object, with methods that allows the plugin to further describe itself.
Return value
string|void As an alternative to the API object's methods, the plugin can simply return a string label.
Overrides crumbs_MonoPlugin::describe
File
- plugins/
crumbs.views.inc, line 110
Class
- views_CrumbsMonoPlugin_PageTitle
- Determines a breadcrumb item title based on the view title of a page view. The same plugin class is used for Views displays with or without arguments.
Code
function describe($api) {
return t('Views page title');
}