You are here

function abjs_install in A/B Test JS 7

Same name and namespace in other branches
  1. 8 abjs.install \abjs_install()
  2. 2.0.x abjs.install \abjs_install()

Implements hook_install().

File

./abjs.install, line 15
Install, update and uninstall functions for the abjs module.

Code

function abjs_install() {
  variable_set('abjs_cookie_prefix', 'abjs_');
  variable_set('abjs_cookie_lifetime', '30');
  variable_set('abjs_cookie_domain', '');
  variable_set('abjs_cookie_secure', 0);
  variable_set('abjs_ace', 1);
}