You are here

function homebox_permission in Homebox 7.3

Same name and namespace in other branches
  1. 7.2 homebox.module \homebox_permission()

Implements hook_permission().

File

./homebox.module, line 237
Homebox main file, takes care of global functions settings constants, etc.

Code

function homebox_permission() {
  return array(
    'administer homebox' => array(
      'title' => t('Administer Homebox'),
      'description' => t('Create new Homebox pages and administer homebox block settings.'),
    ),
  );
}