function crumbs_CrumbsMonoPlugin_home_title::describe in Crumbs, the Breadcrumbs suite 7.2
Same name and namespace in other branches
- 7 plugins/crumbs.crumbs.inc \crumbs_CrumbsMonoPlugin_home_title::describe()
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.crumbs.inc, line 31
Class
Code
function describe($api) {
$home_title = variable_get('crumbs_home_link_title', 'Home');
return t('Set t("@title") as the title for the root item.', array(
'@title' => $home_title,
));
}