Implements DrupalEntityControllerInterface::resetCache().

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();
  }
}