You are here

function easy_breadcrumb_perm in Easy Breadcrumb 6

Implements hook_perm().

Return value

array An array of permission strings. The strings must not be wrapped with the t() function, since the string extractor takes care of extracting permission names defined in the perm hook for translation.

File

./easy_breadcrumb.module, line 21
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_perm() {
  return array(
    'administer easy_breadcrumb',
  );
}