You are here

class blog_CrumbsMonoPlugin_authorName in Crumbs, the Breadcrumbs suite 7.2

Same name and namespace in other branches
  1. 7 plugins/crumbs.blog.inc \blog_CrumbsMonoPlugin_authorName

Hierarchy

Expanded class hierarchy of blog_CrumbsMonoPlugin_authorName

File

plugins/crumbs.blog.inc, line 44

View source
class blog_CrumbsMonoPlugin_authorName implements crumbs_MonoPlugin {

  /**
   * {@inheritdoc}
   */
  function describe($api) {
    $api
      ->titleWithLabel(t('"!name\'s blog", where !name is the author\'s username.'), t('Title'));
  }

  /**
   * Still under constructon..
   *
   * @param string $path
   * @param array $item
   *
   * @return null|string
   */
  function findTitle__blog_x($path, $item) {
    if (FALSE === ($user = crumbs_Util::itemExtractEntity($item, 'user', 1))) {
      return NULL;
    }
    return t("!name's blog", array(
      '!name' => format_username($user),
    ));
  }

}

Members