You are here

protected function ClientsHandlerEntityController::cacheSet in Web Service Clients 7.3

Overridden.

Overrides EntityAPIControllerExportable::cacheSet

See also

DrupalDefaultEntityController::cacheSet()

1 call to ClientsHandlerEntityController::cacheSet()
ClientsHandlerEntityController::load in includes/clients.controller.inc
Overridden to implement factory-by-row pattern.

File

includes/clients.controller.inc, line 83
Provides a controller building upon the Entity exportable controller but providing features for handler objects.

Class

ClientsHandlerEntityController
A controller for entities that function as handlers.

Code

protected function cacheSet($entities) {

  // Only set the static cache if our own flag is set.
  // @see load().
  if ($this->cache_set) {
    parent::cacheSet($entities);
  }
}