You are here

function boxes_permission in Boxes 7

Same name and namespace in other branches
  1. 7.2 boxes.module \boxes_permission()

Implements hook_permission().

File

./boxes.module, line 67
Core functionality for boxes module.

Code

function boxes_permission() {
  return array(
    'edit boxes' => array(
      'title' => t('Edit boxes'),
      'description' => t('Edit existing boxes'),
    ),
    'administer boxes' => array(
      'title' => t('Administer boxes'),
      'description' => t('Administer boxes'),
    ),
  );
}