Hi,
I would like to use different markup elements than those parsed by default by the Core Aggregator Module. For instance, the Core Aggregator module will parse the "Description" from an RSS feed and save the data in the aggregator_item table in the description field.
I would like for instance to save something such as an image URL from the RSS feed and save it into that table.
I don't see why this wouldn't be possible with a custom module that adds a new field to the aggregator_item table, and then fetch the value from the RSS. I'm stuck on the second part, how do I go about parsing other tags in the RSS than those aggregated by default by the Aggregator Module?
The function within Aggregator that does the job is, I believe, the following: aggregator_parse_feed
But it doesn't look like I can use any hook to change the values as of D6.
Do you know how I could simply customized the way the Aggregator Module is doing it?
Thanks!