You are here

function video_google_menu in Video 6

Same name and namespace in other branches
  1. 5 types/video_google/video_google.module \video_google_menu()
  2. 6.2 types/video_google/video_google.module \video_google_menu()

Implementation of hook_menu

File

types/video_google/video_google.module, line 16
Enable Google Video support for video module.

Code

function video_google_menu() {
  $items = array();
  $maycache = true;
  if ($maycache) {
    $items['node/add/video/google'] = array(
      'title' => 'Google',
      'access arguments' => array(
        'create video',
      ),
    );
  }
  return $items;
}