You are here

function ajax_register_install in Ajax Login/Register 7.4

Implements hook_install().

File

./ajax_register.install, line 11
Install, update and uninstall functions for the AJAX REGISTER module.

Code

function ajax_register_install() {

  // Make sure we're heavy so our form_alter hook gets executed last.
  db_update('system')
    ->fields(array(
    'weight' => 1000,
  ))
    ->condition('name', 'ajax_register')
    ->execute();
}