custom/form_helper/form_helper_alter/form_helper_alter.install, line 11
form_helper_alter_install()Implementation of hook_install().
<?php
function form_helper_alter_install() {
variable_set('form_helper_alter_form_alter_path', 'sites/all/form_helper_alter');
variable_set('form_helper_alter_form_alter_properties', array('#attributes', '#default_value', '#description', '#options', '#title', '#type'));
// Make sure form_helper_form_alter() hook executes lasts
db_query("UPDATE {system} SET weight = 10 WHERE name = 'form_helper_alter'");
}
?>