interface EntityCacheEntityControllerInterface in Entity cache 7
Common interface for entity controllers supporting entity cache.
Hierarchy
- interface \DrupalEntityControllerInterface
- interface \EntityCacheEntityControllerInterface
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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DrupalEntityControllerInterface:: |
public | function | Loads one or more entities. | 1 |
DrupalEntityControllerInterface:: |
public | function | Resets the internal, static entity cache. | 1 |
EntityCacheEntityControllerInterface:: |
public | function | Resets the internal, static entity cache. | 6 |