You are here

function opigno_permission in Opigno 7

Same name and namespace in other branches
  1. 7.0 opigno.module \opigno_permission()

Implements hook_permission().

File

./opigno.module, line 85
Contains all hook_implementations and module specific API.

Code

function opigno_permission() {
  return array(
    'access opigno administration pages' => array(
      'title' => t("Access the Opigno administration pages"),
      'description' => t("This permission is necessary for some global tools, like exporting user lists."),
    ),
    'access opigno statistics pages' => array(
      'title' => t("Access the Opigno statistics pages"),
      'description' => t("This permission is necessary to access opigno statistics pages"),
    ),
  );
}