function ItemStorage::loadAll

Same name and namespace in other branches
  1. 8.9.x 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 31

Class

ItemStorage
Defines the storage handler class for feed item entities.

Namespace

Drupal\aggregator

Code

public function loadAll($limit = NULL) {
    $query = \Drupal::entityQuery('aggregator_item');
    return $this->executeFeedItemQuery($query, $limit);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.