You are here

function oa_appearance_og_permission in Open Atrium Appearance 7.2

Implement hook_og_permission().

File

./oa_appearance.module, line 50
Provides integration between Open Atrium and Colorizer module

Code

function oa_appearance_og_permission() {
  $items = array();
  $items['manage appearance'] = array(
    'title' => t('Manage appearance'),
    'description' => t('Manage the appearance for this group.'),
    'default role' => array(
      OG_ADMINISTRATOR_ROLE,
    ),
    'restrict access' => TRUE,
  );
  return $items;
}