function DrupalDefaultEntityController::resetCache
Implements DrupalEntityControllerInterface::resetCache().
Parameters
$ids: (optional) If specified, the cache is reset for the entities with the given ids only.
Overrides DrupalEntityControllerInterface::resetCache
File
-
includes/
entity.inc, line 143
Class
- DrupalDefaultEntityController
- Default implementation of DrupalEntityControllerInterface.
Code
public function resetCache(array $ids = NULL) {
if (isset($ids)) {
foreach ($ids as $id) {
unset($this->entityCache[$id]);
}
}
else {
$this->entityCache = array();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.