function menu_custom_features_export_options in Features 7.2
Same name and namespace in other branches
- 6 includes/features.menu.inc \menu_custom_features_export_options()
- 7 includes/features.menu.inc \menu_custom_features_export_options()
Implements hook_features_export_options().
File
- includes/
features.menu.inc, line 58 - Features integration for 'menu' module.
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;
}