You are here

function menu_variable_type_info in Variable 7

Same name and namespace in other branches
  1. 7.2 includes/menu.variable.inc \menu_variable_type_info()

Implements hook_variable_type_info()

File

includes/menu.variable.inc, line 47
Variable API module. Definition for Drupal core variables

Code

function menu_variable_type_info() {
  $type['menu'] = array(
    'title' => t('Menu'),
    'type' => 'select',
    'options callback' => 'menu_variable_menu_list',
  );
  return $type;
}