You are here

function coffee_permission in Coffee 7

Same name and namespace in other branches
  1. 7.2 coffee.module \coffee_permission()

Implements hook_permission().

File

./coffee.module, line 14
Coffee primary module file

Code

function coffee_permission() {
  return array(
    'access coffee' => array(
      'title' => t('Access Coffee'),
      'description' => t('Access the Coffee search box to navigate fast between admin pages'),
    ),
  );
}