You are here

function _pathauto_CrumbsPlugin::findParent__node_x in Crumbs, the Breadcrumbs suite 6.2

File

plugins/crumbs.pathauto.inc, line 29

Class

_pathauto_CrumbsPlugin
Implementation of class hook class_CrumbsParentFinder on the behalf of path module.

Code

function findParent__node_x($path, $item) {
  $node = $item['page_arguments'][0];
  if (is_object($node)) {
    $placeholders = pathauto_get_placeholders('node', $node);
    $alias = pathauto_create_alias('node', 'return', $placeholders, $path, $node->nid, $node->type, $node->language);
    return crumbs_reduce_path($alias, 1);
  }
}