You are here

function eloqua_install_update_7001 in Eloqua 7

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

Enables the eloqua_webform module.

File

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

Code

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