You are here

public function DataProviderDecorator::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

File

src/Plugin/resource/DataProvider/DataProviderDecorator.php, line 133
Contains \Drupal\restful\Plugin\resource\DataProvider\DataProviderDecorator.

Class

DataProviderDecorator

Namespace

Drupal\restful\Plugin\resource\DataProvider

Code

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