public function ItemStorage::loadAll in Drupal 8
Same name and namespace in other branches
- 9 core/modules/aggregator/src/ItemStorage.php \Drupal\aggregator\ItemStorage::loadAll()
Loads feed items from all feeds.
Parameters
int $limit: (optional) The number of items to return. Defaults to unlimited.
Return value
\Drupal\aggregator\ItemInterface[] An array of the feed items.
Overrides ItemStorageInterface::loadAll
File
- core/
modules/ aggregator/ src/ ItemStorage.php, line 30
Class
- ItemStorage
- Controller class for aggregators items.
Namespace
Drupal\aggregatorCode
public function loadAll($limit = NULL) {
$query = \Drupal::entityQuery('aggregator_item');
return $this
->executeFeedItemQuery($query, $limit);
}