You are here

function background_video_menu in Background Video 7

Implements hook_menu().

File

./background_video.module, line 89
This file provides basic functionality.

Code

function background_video_menu() {
  $items = array();
  $items['admin/config/media/background-video-settings'] = array(
    'title' => 'Background Video Settings',
    'description' => 'This form is for taking the info of Video that you want to play in the background of the page',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'background_video_settings_form',
    ),
    'access arguments' => array(
      'administer background video',
    ),
    'file' => 'background_video.admin.inc',
  );
  return $items;
}