public function DataProviderDecorator::viewMultiple in RESTful 7.2
Read operation.
Parameters
array $identifiers: The array of IDs of things being viewed.
Return value
array An array of structured data for the things being viewed.
Overrides CrudInterface::viewMultiple
File
- src/
Plugin/ resource/ DataProvider/ DataProviderDecorator.php, line 168 - Contains \Drupal\restful\Plugin\resource\DataProvider\DataProviderDecorator.
Class
Namespace
Drupal\restful\Plugin\resource\DataProviderCode
public function viewMultiple(array $identifiers) {
return $this->decorated
->viewMultiple($identifiers);
}