function log_plan_permission in Log entity 7
Implements hook_permission().
File
- log_plan/
log_plan.module, line 15 - Log Plan - A planning module that utilizes log entities.
Code
function log_plan_permission() {
$perms = array(
'view log plan' => array(
'title' => t('View log plan'),
'description' => t('Allow access to the log plan Views'),
),
);
return $perms;
}