class path_CrumbsMonoPlugin in Crumbs, the Breadcrumbs suite 7
Same name and namespace in other branches
- 7.2 plugins/crumbs.path.inc \path_CrumbsMonoPlugin
Implementation of class hook class_CrumbsParentFinder on the behalf of path module.
Hierarchy
- class \path_CrumbsMonoPlugin implements crumbs_MonoPlugin
Expanded class hierarchy of path_CrumbsMonoPlugin
File
- plugins/
crumbs.path.inc, line 17
View source
class path_CrumbsMonoPlugin implements crumbs_MonoPlugin {
function describe($api) {
return t('Chop off the last fragment of the path alias, consider the result as the parent path.');
}
function disabledByDefault() {
return TRUE;
}
function findParent($path, $item) {
if ($alias = $item['alias']) {
return crumbs_reduce_path($alias, 1);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
path_CrumbsMonoPlugin:: |
function |
Overrides crumbs_MonoPlugin:: |
||
path_CrumbsMonoPlugin:: |
function | |||
path_CrumbsMonoPlugin:: |
function |