| 7 aggregator.module | _aggregator_get_variables() |
| 8 aggregator.module | _aggregator_get_variables() |
Gets the fetcher, parser, and processors.
Return value
An array containing the fetcher, parser, and processors.
3 calls to _aggregator_get_variables()
File
- modules/
aggregator/ aggregator.module, line 590 - Used to aggregate syndicated content (RSS, RDF, and Atom).
Code
function _aggregator_get_variables() {
// Fetch the feed.
$fetcher = variable_get('aggregator_fetcher', 'aggregator');
if ($fetcher == 'aggregator') {
include_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'aggregator') . '/aggregator.fetcher.inc';
}
$parser = variable_get('aggregator_parser', 'aggregator');
if ($parser == 'aggregator') {
include_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'aggregator') . '/aggregator.parser.inc';
}
$processors = variable_get('aggregator_processors', array('aggregator'));
if (in_array('aggregator', $processors)) {
include_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'aggregator') . '/aggregator.processor.inc';
}
return array($fetcher, $parser, $processors);
}
Login or register to post comments