You are here

function video_google_menu in Video 5

Same name and namespace in other branches
  1. 6 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 15
Enable Google Video support for video module.

Code

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