You are here

RestfulDataProviderCToolsPluginsInterface.php in RESTful 7

File

plugins/restful/RestfulDataProviderCToolsPluginsInterface.php
View source
<?php

/**
 * @file
 * Contains \RestfulDataProviderCToolsPluginsInterface
 */
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();

}