You are here

function feeds_get_subscription_jobs in Feeds 7.2

Same name and namespace in other branches
  1. 8.2 feeds.module \feeds_get_subscription_jobs()

Returns the list of queued jobs to be run.

Return value

array An array of subscribe jobs to process.

See also

feeds_set_subscription_job()

1 call to feeds_get_subscription_jobs()
feeds_exit in ./feeds.module
Implements hook_exit().

File

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

Code

function feeds_get_subscription_jobs() {
  return feeds_set_subscription_job();
}