You are here

function opigno_in_house_training_app_og_permission in Opigno in house training app 7

Implements hook_og_permission().

File

./opigno_in_house_training_app.module, line 16

Code

function opigno_in_house_training_app_og_permission() {
  return array(
    'view in_house_app content' => array(
      'title' => t("Allows the user to view in_house_lessons"),
      'description' => t("Allows the user to view in_house_lessons"),
    ),
    'score in_house_app content' => array(
      'title' => t("Allows the user to score in_house_lessons"),
      'description' => t("Allows the user to score in_house_lessons"),
    ),
  );
}