You are here

function opigno_video_app_og_permission in Opigno Video App 7

Implements hook_og_permission().

File

./opigno_video_app.module, line 50
Module hooks.

Code

function opigno_video_app_og_permission() {
  return array(
    'access video content' => array(
      'title' => t("Allows the user the view the videos"),
      'description' => t("Allows the creation of new videos"),
    ),
    'sort videos' => array(
      'title' => t("Sort videos inside this course"),
    ),
  );
}