You are here

function easy_breadcrumb_permission in Easy Breadcrumb 7

Same name and namespace in other branches
  1. 7.2 easy_breadcrumb.module \easy_breadcrumb_permission()

Implements hook_permission().

Return value

Assoc permission items.

File

./easy_breadcrumb.module, line 19
The Easy Breadcrumb module provides a block to be embedded in any page, typically at some place near the page's header. Easy Breadcrumb uses the URL (path alias) and the current page's title (when available) to obtain the breadcrumb's…

Code

function easy_breadcrumb_permission() {
  return array(
    'administer easy_breadcrumb' => array(
      'title' => t("Administer Easy Breadcrumb"),
      'description' => t('Perform administration tasks for the module Easy Breadcrumb.'),
    ),
  );
}