You are here

function raven_update_7000 in Raven: Sentry Integration 7

Implements hook_update_N().

File

./raven.install, line 123
Install, update, and uninstall functions for the Raven module.

Code

function raven_update_7000(&$sandbox) {
  if (!module_enable(array(
    'xautoload',
  ))) {
    throw new DrupalUpdateException(t('Please install xautoload module and run this update again.'));
  }
  return t('Please read the Raven module README.md for information about new library dependencies.');
}