You are here

function oa_clone_permission in Open Atrium Clone 7.2

Implements hook_permision().

File

./oa_clone.module, line 190

Code

function oa_clone_permission() {
  return array(
    'clone node in any group' => array(
      'title' => t('Clone any node in any group'),
      'description' => t('The <em>Clone any node</em> permission only affects nodes that are not in an Organic Group - this permission affects nodes in Organic Groups.'),
    ),
    'clone own nodes in any group' => array(
      'title' => t('Clone own content in any group'),
      'description' => t('The <em>Clone own nodes</em> permission only affects nodes that are not in an Organic Group - this permission affects nodes in Organic Groups.'),
    ),
  );
}