You are here

regcode_dynamic.install in Registration codes 6.2

Installation functions

File

regcode_dynamic/regcode_dynamic.install
View source
<?php

/**
 * @file
 * Installation functions
 */

/**
 * Implements hook_install().
 */
function regcode_dynamic_install() {

  // We want this module to run before the regcode module
  db_query("UPDATE {system} SET weight=-1 WHERE name='regcode_dynamic' AND type='module'");
}

Functions

Namesort descending Description
regcode_dynamic_install Implements hook_install().