You are here

interface RestfulDataProviderCToolsPluginsInterface in RESTful 7

@file Contains \RestfulDataProviderCToolsPluginsInterface

Hierarchy

Expanded class hierarchy of RestfulDataProviderCToolsPluginsInterface

All classes that implement RestfulDataProviderCToolsPluginsInterface

File

plugins/restful/RestfulDataProviderCToolsPluginsInterface.php, line 8
Contains \RestfulDataProviderCToolsPluginsInterface

View source
interface RestfulDataProviderCToolsPluginsInterface extends RestfulDataProviderInterface {

  /**
   * Get the total count of entities that match certain request.
   *
   * @return int
   *   The total number of results without including pagination.
   */
  public function getTotalCount();

}

Members

Namesort descending Modifiers Type Description Overrides
RestfulDataProviderCToolsPluginsInterface::getTotalCount public function Get the total count of entities that match certain request. 1
RestfulDataProviderInterface::create public function Create an item from the request object.
RestfulDataProviderInterface::index public function Get a list of entities.
RestfulDataProviderInterface::remove public function Remove the item from the data source.
RestfulDataProviderInterface::update public function Update an item based on the request object.
RestfulDataProviderInterface::view public function View an item from the data source.
RestfulDataProviderInterface::viewMultiple public function View a collection of items.