You are here

function eck_clean_up_init in Entity Construction Kit (ECK) 7.2

If a clean up has been requested, perform it.

See also

eck_clean_up()

1 call to eck_clean_up_init()
eck_init in ./eck.module
Implements hook_init().

File

./eck.module, line 929

Code

function eck_clean_up_init() {
  if (variable_get("eck_clear_caches", FALSE)) {
    variable_set("eck_clear_caches", FALSE);
    eck_clean_up();
  }
}