function hook_aggregator_process in Drupal 7
Create a processor for aggregator.module.
A processor acts on parsed feed data. Active processors are called at the third and last of the aggregation stages: first, data is downloaded by the active fetcher; second, it is converted to a common format by the active parser; and finally, it is passed to all active processors that manipulate or store the data.
Modules that define this hook can be activated as a processor within the configuration page.
Parameters
$feed: A feed object representing the resource to be processed. $feed->items contains an array of feed items downloaded and parsed at the parsing stage. See hook_aggregator_parse() for the basic format of a single item in the $feed->items array. For the exact format refer to the particular parser in use.
See also
hook_aggregator_process_info()
Related topics
1 function implements hook_aggregator_process()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- aggregator_aggregator_process in modules/
aggregator/ aggregator.processor.inc - Implements hook_aggregator_process().
2 invocations of hook_aggregator_process()
- aggregator_admin_form in modules/
aggregator/ aggregator.admin.inc - Form constructor for the aggregator system settings.
- aggregator_refresh in modules/
aggregator/ aggregator.module - Checks a news feed for new items.
File
- modules/
aggregator/ aggregator.api.php, line 168 - Documentation for aggregator API.
Code
function hook_aggregator_process($feed) {
foreach ($feed->items as $item) {
mymodule_save($item);
}
}