public function ECKCache::reset in Entity Construction Kit (ECK) 7.3
Same name and namespace in other branches
- 7.2 eck.classes.inc \ECKCache::reset()
Reset.
File
- ./
eck.classes.inc, line 945 - Classes for all the different objects used in ECK.
Class
Code
public function reset() {
if ($this->noCache) {
return;
}
$this->data = NULL;
cache_clear_all($this->id, 'cache_eck');
}