protected function FeedsDataProcessor::tableName in Feeds 6
Return the data table name for this feed.
3 calls to FeedsDataProcessor::tableName()
- FeedsDataProcessor::expire in plugins/
FeedsDataProcessor.inc - Implement expire().
- FeedsDataProcessor::handler in plugins/
FeedsDataProcessor.inc - Return a data handler for this table.
- FeedsDataProcessor::table in plugins/
FeedsDataProcessor.inc - Return the data table for this feed.
File
- plugins/
FeedsDataProcessor.inc, line 284 - Definition of FeedsDataProcessor.
Class
- FeedsDataProcessor
- Creates simple table records from feed items. Uses Data module.
Code
protected function tableName() {
return variable_get('feeds_data_' . $this->id, 'feeds_data_' . $this->id);
}