You are here

function entity_background_image_menu in Entity background 7

Implements hook_menu().

File

module/entity_background_image/entity_background_image.module, line 17
Module file entity background image.

Code

function entity_background_image_menu() {
  $items = array();
  $includes = drupal_get_path('module', 'entity_background_image') . '/includes';
  $items['admin/config/system/entity_background_image'] = array(
    'title' => 'Entity background image',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'entity_background_image_settings_form',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'file' => 'entity_background_image.admin.inc',
    'file path' => $includes,
  );
  return $items;
}