You are here

public function CacheDecoratedDataProvider::getIndexIds in RESTful 7.2

Returns the ID to render for the current index GET request.

Return value

array Numeric array containing the identifiers to be sent to viewMultiple.

Overrides DataProviderInterface::getIndexIds

1 call to CacheDecoratedDataProvider::getIndexIds()
CacheDecoratedDataProvider::index in src/Plugin/resource/DataProvider/CacheDecoratedDataProvider.php
List operation.

File

src/Plugin/resource/DataProvider/CacheDecoratedDataProvider.php, line 163
Contains \Drupal\restful\Plugin\resource\DataProvider\CacheDecoratedDataProvider.

Class

CacheDecoratedDataProvider
Class CacheDecoratedDataProvider.

Namespace

Drupal\restful\Plugin\resource\DataProvider

Code

public function getIndexIds() {
  return $this->subject
    ->getIndexIds();
}