You are here

function video_filter_menu in Video Filter 6.2

Same name and namespace in other branches
  1. 6.3 video_filter.module \video_filter_menu()
  2. 7.3 video_filter.module \video_filter_menu()

Implementation of hook_menu().

File

./video_filter.module, line 297

Code

function video_filter_menu() {
  $items = array();
  $items['video_filter/load'] = array(
    'title' => t('Video Filter'),
    'page callback' => 'video_filter_loader',
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}