You are here

function feeds_enabled_importers in Feeds 6

Same name and namespace in other branches
  1. 8.2 feeds.module \feeds_enabled_importers()
  2. 7.2 feeds.module \feeds_enabled_importers()
  3. 7 feeds.module \feeds_enabled_importers()

Gets an array of enabled importer ids.

Return value

An array where the values contain ids of enabled importers.

Related topics

2 calls to feeds_enabled_importers()
feeds_page_access in ./feeds.module
Menu access callback.
feeds_reschedule in ./feeds.module
Reschedule one or all importers.

File

./feeds.module, line 608
Feeds - basic API functions and hook implementations.

Code

function feeds_enabled_importers() {
  return array_keys(_feeds_importer_digest());
}