function _biblio_set_module_system_weight in Bibliography Module 6.2
Helper function to adjust the system weight value of biblio module.
2 calls to _biblio_set_module_system_weight()
- biblio_enable in ./
biblio.install - Implements hook_enable().
- biblio_install in ./
biblio.install - Implements hook_install().
File
- ./
biblio.install, line 215 - Install, update, and uninstall functions for the biblio module.
Code
function _biblio_set_module_system_weight() {
return update_sql("UPDATE {system} SET weight = 9 WHERE name = 'biblio'");
}