function civicrm_entity_permission in CiviCRM Entity 7.2
Same name and namespace in other branches
- 7 civicrm_entity.module \civicrm_entity_permission()
Implements hook_permission().
File
- ./
civicrm_entity.module, line 123
Code
function civicrm_entity_permission() {
return array(
'civicrm_entity.rules.administer' => array(
'title' => t('Administer CiviCRM rule configurations'),
'restrict access' => TRUE,
),
'administer CiviCRM Entity' => array(
'title' => t('Administer CiviCRM Entity'),
'restrict access' => TRUE,
),
);
}