You are here

function eloqua_install_update_7000 in Eloqua 7.2

Same name and namespace in other branches
  1. 7 eloqua.install \eloqua_install_update_7000()

Removes variable eloqua_scripts_directory.

This variable was used to indicate the path to the Eloqua JavaScript library. That library is no longer required with this module.

File

./eloqua.install, line 30
Eloqua install, schema, uninstall and update hooks.

Code

function eloqua_install_update_7000(&$sandbox) {
  drupal_set_message(t('You may remove the elqNow library from your sites folder. Libraries are no longer required to use this module.'));
  variable_del('eloqua_scripts_directory');
}