flux feeds integration
Categories
Component ID
2054929
Component name
flux feeds integration
Component type
module
Maintenance status
Development status
Component security advisory coverage
not-covered
Downloads
1190
Component created
Component changed
Component body
Provides integration with feeds based upon the flux Services integration.
This is an integration module, so it does not expose any end-user functionality. It integrates Drupal with feeds by providing remote entities and integration with the Rules module.
Requirements
- flux Services integration (obviously)
API
The module fetches feeds via the Zend Feed Reader component and provides a clean API for developers to interact with feeds.
$service = entity_load_single('fluxservice_service', $id);
$feed = $service->read();
foreach ($feed as $item) {
$title = $item->getTitle();
}