You are here

public function ECKCache::__construct in Entity Construction Kit (ECK) 7.3

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

Constructor.

File

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

Class

ECKCache

Code

public function __construct($id) {
  $this->id = $id;
  $this->noCache = FALSE;
  if (!db_table_exists('cache_eck')) {
    $this->noCache = TRUE;
  }
}