interface RestfulDataProviderEFQInterface in RESTful 7
@file Contains \RestfulDataProviderEFQInterface
Hierarchy
- interface \RestfulDataProviderEFQInterface
Expanded class hierarchy of RestfulDataProviderEFQInterface
All classes that implement RestfulDataProviderEFQInterface
File
- plugins/
restful/ RestfulDataProviderEFQInterface.php, line 8 - Contains \RestfulDataProviderEFQInterface
View source
interface RestfulDataProviderEFQInterface {
/**
* Prepare a query for RestfulEntityBase::getList().
*
* @return EntityFieldQuery
* The EntityFieldQuery object.
*/
public function getQueryForList();
/**
* Prepare a query for RestfulEntityBase::getTotalCount().
*
* @return EntityFieldQuery
* The EntityFieldQuery object.
*
* @throws RestfulBadRequestException
*/
public function getQueryCount();
/**
* Get the total count of entities that match certain request.
*
* @return int
* The total number of results without including pagination.
*/
public function getTotalCount();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RestfulDataProviderEFQInterface:: |
public | function | Prepare a query for RestfulEntityBase::getTotalCount(). | 1 |
RestfulDataProviderEFQInterface:: |
public | function | Prepare a query for RestfulEntityBase::getList(). | 1 |
RestfulDataProviderEFQInterface:: |
public | function | Get the total count of entities that match certain request. | 1 |