You are here

public function RestfulDataProviderEFQ::index in RESTful 7

Get a list of entities.

Return value

array Array of entities, as passed to RestfulEntityBase::viewEntity().

Throws

RestfulBadRequestException

Overrides RestfulBase::index

File

plugins/restful/RestfulDataProviderEFQ.php, line 347
Contains \RestfulDataProviderEFQ

Class

RestfulDataProviderEFQ
@file Contains \RestfulDataProviderEFQ

Code

public function index() {

  // Defer the actual implementation to \RestfulEntityBase.
  return $this
    ->getList();
}