You are here

function opigno_video_app_menu in Opigno Video App 7

Implements hook_menu().

File

./opigno_video_app.module, line 11
Module hooks.

Code

function opigno_video_app_menu() {
  return array(
    'node/%node/sort-videos' => array(
      'title' => "Sort videos",
      'description' => "Sort videos inside the course",
      'page callback' => 'drupal_get_form',
      'page arguments' => array(
        'opigno_video_app_sort_course_videos_form',
        1,
      ),
      'access callback' => 'opigno_video_app_access_node_sort_videos',
      'access arguments' => array(
        1,
      ),
      'file' => 'includes/opigno_video_app.pages.inc',
      'type' => MENU_CALLBACK,
    ),
  );
}