public ItemStorageInterface::loadByFeed($fid, $limit = NULL)
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.
File
- core/modules/aggregator/src/ItemStorageInterface.php, line 45
Class
- ItemStorageInterface
- Defines an interface for aggregator item entity storage classes.
Namespace
Drupal\aggregator
Code
public function loadByFeed($fid, $limit = NULL);
Please login to continue.