You are here

interface EntityCacheEntityControllerInterface in Entity cache 7

Common interface for entity controllers supporting entity cache.

Hierarchy

Expanded class hierarchy of EntityCacheEntityControllerInterface

All classes that implement EntityCacheEntityControllerInterface

1 string reference to 'EntityCacheEntityControllerInterface'
entitycache.module in ./entitycache.module
Allows for caching of core entities.

File

includes/entitycache.entitycacheentitycontrollerinterface.inc, line 6

View source
interface EntityCacheEntityControllerInterface extends DrupalEntityControllerInterface {

  /**
   * Resets the internal, static entity cache.
   *
   * @param string[] $ids
   *   (optional) If specified, the cache is reset for the entities with the
   *   given ids only.
   */
  public function resetStaticCache(array $ids = NULL);

}

Members

Namesort descending Modifiers Type Description Overrides
DrupalEntityControllerInterface::load public function Loads one or more entities. 1
DrupalEntityControllerInterface::resetCache public function Resets the internal, static entity cache. 1
EntityCacheEntityControllerInterface::resetStaticCache public function Resets the internal, static entity cache. 6