function feeds_enabled_importers in Feeds 7.2
Same name and namespace in other branches
- 8.2 feeds.module \feeds_enabled_importers()
- 6 feeds.module \feeds_enabled_importers()
- 7 feeds.module \feeds_enabled_importers()
Gets an array of enabled importer ids.
Return value
string[] An array where the values contain ids of enabled importers.
Related topics
5 calls to feeds_enabled_importers()
- feeds_admin_menu_output_build in ./
feeds.module - Implements hook_admin_menu_output_build().
- feeds_page_access in ./
feeds.module - Menu access callback.
- feeds_reschedule in ./
feeds.module - Reschedule one or all importers.
- feeds_ui_admin_menu_map in feeds_ui/
feeds_ui.module - Implements hook_admin_menu_map().
- feeds_views_handler_argument_importer_id::validate_arg in views/
feeds_views_handler_argument_importer_id.inc - Argument must be a valid importer id.
File
- ./
feeds.module, line 1092 - Feeds - basic API functions and hook implementations.
Code
function feeds_enabled_importers() {
return array_keys(_feeds_importer_digest());
}