menu_custom_features_export_options

  1. drupal
    1. 6 features.menu.inc function
    2. 7 features.menu.inc function
Drupal 7 menu_custom_features_export_options()

Implements hook_features_export_options().

File

sites/all/modules/features/includes/features.menu.inc, line 46

Code

function menu_custom_features_export_options() {
  $options = array();
  $result = db_query("SELECT * FROM {menu_custom} ORDER BY title", array(), array('fetch' => PDO::FETCH_ASSOC));
  foreach ($result as $menu) {
    $options[$menu['menu_name']] = $menu['title'];
  }
  return $options;
}