You are here

function _feed_import_base_feed_enabled in Feed Import 7.3

Same name and namespace in other branches
  1. 8 feed_import_base/feed_import_base.module \_feed_import_base_feed_enabled()

Checks if a feed is enabled.

1 string reference to '_feed_import_base_feed_enabled'
feed_import_base_cron in feed_import_base/feed_import_base.module
Implements hook_cron().

File

feed_import_base/feed_import_base.module, line 327
Basic settings for feed import base module

Code

function _feed_import_base_feed_enabled($feed) {
  return $feed->cron_import > 0;
}