You are here

function event_calendar_permission in Event Calendar 7

Implements hook_permission().

File

./event_calendar.module, line 47
The module file that allows events to be created and required admin approval.

Code

function event_calendar_permission() {
  $perms = array(
    'administer event status' => array(
      'title' => t('Administer event status'),
      'restrict access' => TRUE,
    ),
  );
  return $perms;
}