You are here

function asset_update_7102 in Asset 7

If entitycache module exists enable asset_entitycache module.

1 call to asset_update_7102()
asset_install in ./asset.install
Implements hook_install().

File

./asset.install, line 207
Install, update and uninstall functions for the assets module.

Code

function asset_update_7102() {
  if (module_exists('entitycache')) {
    module_enable(array(
      'asset_entitycache',
    ));
  }
}