You are here

class _blog_CrumbsPlugin in Crumbs, the Breadcrumbs suite 6.2

Hierarchy

Expanded class hierarchy of _blog_CrumbsPlugin

File

plugins/crumbs.blog.inc, line 9

View source
class _blog_CrumbsPlugin {
  function findParent__node_x($path, $item) {
    $node = $item['map'][1];
    if ($node->type === 'blog') {
      return 'blog/' . $node->uid;
    }
  }
  function findTitle__blog_x($path, $item) {
    $user = $item['map'][1];
    return t("!name's blog", array(
      '!name' => $user->name,
    ));
  }

}

Members