public function ItemStorageInterface::loadByFeed in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/aggregator/src/ItemStorageInterface.php \Drupal\aggregator\ItemStorageInterface::loadByFeed()
Loads feed items filtered by a feed.
Parameters
int $fid: The feed ID to filter by.
int $limit: (optional) The number of items to return. Defaults to unlimited.
Return value
\Drupal\aggregator\ItemInterface[] An array of the feed items.
1 method overrides ItemStorageInterface::loadByFeed()
- ItemStorage::loadByFeed in core/
modules/ aggregator/ src/ ItemStorage.php - Loads feed items filtered by a feed.
File
- core/
modules/ aggregator/ src/ ItemStorageInterface.php, line 50 - Contains \Drupal\aggregator\ItemStorageInterface.
Class
- ItemStorageInterface
- Defines an interface for aggregator item entity storage classes.
Namespace
Drupal\aggregatorCode
public function loadByFeed($fid, $limit = NULL);