Skip to content
Snippets Groups Projects
Commit 475305c0 authored by Alex Barth's avatar Alex Barth
Browse files

Move batch constants to feeds.module.

parent e13f9abb
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,9 @@ define('FEEDS_EXPIRE_NEVER', -1); ...@@ -19,7 +19,9 @@ define('FEEDS_EXPIRE_NEVER', -1);
define('FEEDS_EXPORT_NONE', 0x0); define('FEEDS_EXPORT_NONE', 0x0);
// The Drupal Queue FeedsScheduler may use for scheduling importing or expiry. // The Drupal Queue FeedsScheduler may use for scheduling importing or expiry.
define('FEEDS_SCHEDULER_QUEUE', 'feeds_queue'); define('FEEDS_SCHEDULER_QUEUE', 'feeds_queue');
// Status of batched operations.
define('FEEDS_BATCH_COMPLETE', 1);
define('FEEDS_BATCH_ACTIVE', 0);
/** /**
* @defgroup hooks Hook and callback implementations * @defgroup hooks Hook and callback implementations
......
...@@ -11,10 +11,6 @@ require_once(dirname(__FILE__) .'/FeedsConfigurable.inc'); ...@@ -11,10 +11,6 @@ require_once(dirname(__FILE__) .'/FeedsConfigurable.inc');
require_once(dirname(__FILE__) .'/FeedsSource.inc'); require_once(dirname(__FILE__) .'/FeedsSource.inc');
require_once(dirname(__FILE__) .'/FeedsBatch.inc'); require_once(dirname(__FILE__) .'/FeedsBatch.inc');
// Status of batched operations.
define('FEEDS_BATCH_COMPLETE', 1);
define('FEEDS_BATCH_ACTIVE', 0);
/** /**
* A FeedsImporter object describes how an external source should be fetched, * A FeedsImporter object describes how an external source should be fetched,
* parsed and processed. Feeds can manage an arbitrary amount of importers. * parsed and processed. Feeds can manage an arbitrary amount of importers.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment