You are here

function forena_update_7501 in Forena Reports 7.5

Check that the xautoload module has been enabled.

File

./forena.install, line 47
Installation api for module

Code

function forena_update_7501() {
  $enabled = module_enable(array(
    'xautoload',
  ));
  if (!$enabled) {
    throw new DrupalUpdateException('X Autoload module (xautoload) required.');
  }
}