function rules_forms_install in Rules 6
Implementation of hook_install().
File
- rules_forms/
rules_forms.install, line 12 - Rules Forms - Installation file.
Code
function rules_forms_install() {
// Set the modules' weight to 20, because we want it to be the last one using
// hook_form_alter().
db_query("UPDATE {system} SET weight = 20 WHERE name = 'rules_forms'");
}