You are here

public function RestfulDataProviderEFQ::view in RESTful 7

View an item from the data source.

Parameters

mixed $id: The unique ID for the item.

Return value

array The structured array ready to be rendered for the current item.

Overrides RestfulBase::view

File

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

Class

RestfulDataProviderEFQ
@file Contains \RestfulDataProviderEFQ

Code

public function view($id) {

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