You are here

function video_zencoder_menu in Video 7

Same name and namespace in other branches
  1. 6.5 plugins/video_zencoder/video_zencoder.module \video_zencoder_menu()
  2. 6.4 plugins/video_zencoder/video_zencoder.module \video_zencoder_menu()

Implementation of hook_menu().

File

modules/video_zencoder/video_zencoder.module, line 25
Provides wrapper functions for the s3 amazon webservices. @todo

Code

function video_zencoder_menu() {
  $items = array();
  $items['postback/jobs'] = array(
    //    'title' => 'Video',
    //    'description' => 'Configure different aspects of the video module and its plugins',
    'page callback' => '_video_zencoder_postback_jobs',
    'access arguments' => array(
      'zencoder postback',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}