You are here

function eck_init in Entity Construction Kit (ECK) 7.2

Same name and namespace in other branches
  1. 7.3 eck.module \eck_init()

Implements hook_init().

File

./eck.module, line 904

Code

function eck_init() {

  // Let's initialize our global caches.
  global $_eck_entity_types_cache;
  global $_eck_bundles_cache;
  $_eck_entity_types_cache = new ECKCache("entity_types");
  $_eck_bundles_cache = new ECKCache("bundles");
  eck_clean_up_init();
}