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
de64cc96
Commit
de64cc96
authored
15 years ago
by
Alex Barth
Browse files
Options
Downloads
Patches
Plain Diff
#649552 rsoden: Provide variable for data table name.
parent
100445c8
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.txt
+1
-0
1 addition, 0 deletions
CHANGELOG.txt
README.txt
+8
-1
8 additions, 1 deletion
README.txt
plugins/FeedsDataProcessor.inc
+1
-1
1 addition, 1 deletion
plugins/FeedsDataProcessor.inc
with
10 additions
and
2 deletions
CHANGELOG.txt
+
1
−
0
View file @
de64cc96
...
...
@@ -3,6 +3,7 @@
Feeds 6.x 1.0 xxxx, 200x-xx-xx
------------------------------
- #649552 rsoden: Provide variable for data table name.
- #631962 velosol, alex_b: FeedsNodeProcessor: Update when changed.
- #623452 mongolito404: Port basic test infrastructure for mappers, test for
basic CCK mapper.
...
...
This diff is collapsed.
Click to expand it.
README.txt
+
8
−
1
View file @
de64cc96
...
...
@@ -117,10 +117,17 @@ Description: The number of feeds to import on cron time.
Name: feeds_schedule_queue_num
Default: 200
The number of feeds to queue on cron time. Only has an effect if
Description:
The number of feeds to queue on cron time. Only has an effect if
Drupal Queue is enabled.
http://drupal.org/project/drupal_queue
Name: feeds_data_$importer_id
Default: feeds_data_$importer_id
Description: The table used by FeedsDataProcessor to store feed items. Usually a
FeedsDataProcessor builds a table name from a prefix (feeds_data_)
and the importer's id ($importer_id). This default table name can
be overridden by defining a variable with the same name.
Glossary
========
...
...
This diff is collapsed.
Click to expand it.
plugins/FeedsDataProcessor.inc
+
1
−
1
View file @
de64cc96
...
...
@@ -269,7 +269,7 @@ class FeedsDataProcessor extends FeedsProcessor {
* Return the data table name for this feed.
*/
protected
function
tableName
()
{
return
'feeds_data_'
.
$this
->
id
;
return
variable_get
(
'feeds_data_'
.
$this
->
id
,
'feeds_data_'
.
$this
->
id
)
;
}
/**
...
...
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