You are here

function basicevent_perm in Event 5

Implementation of hook_perm().

File

contrib/basicevent.module, line 24
An extremly simple module to implement the event API.

Code

function basicevent_perm() {
  return array(
    'create events',
    'edit own events',
  );
}