Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
feeds
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
feeds
Commits
475305c0
Commit
475305c0
authored
15 years ago
by
Alex Barth
Browse files
Options
Downloads
Patches
Plain Diff
Move batch constants to feeds.module.
parent
e13f9abb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
feeds.module
+3
-1
3 additions, 1 deletion
feeds.module
includes/FeedsImporter.inc
+0
-4
0 additions, 4 deletions
includes/FeedsImporter.inc
with
3 additions
and
5 deletions
feeds.module
+
3
−
1
View file @
475305c0
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
includes/FeedsImporter.inc
+
0
−
4
View file @
475305c0
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment