You are here

public function ECKCache::reset in Entity Construction Kit (ECK) 7.2

Same name and namespace in other branches
  1. 7.3 eck.classes.inc \ECKCache::reset()

Reset the cache.

File

./eck.classes.inc, line 864
Classes for all the different objects used in ECK.

Class

ECKCache
A class that manages ECK caches.

Code

public function reset() {
  $this->data = NULL;
  cache_clear_all($this->id, 'cache_eck');
}