You are here

function eloqua_install_update_7001 in Eloqua 7.2

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

Enables the eloqua_webform module and the automate module.

File

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

Code

function eloqua_install_update_7001(&$sandbox) {
  $modules = array(
    'eloqua_webform',
    'automate',
  );
  module_enable($modules, TRUE);
}