function biblio_bibtex_set_system_weight in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/bibtexParse/biblio_bibtex.install \biblio_bibtex_set_system_weight()
- 7.2 modules/bibtexParse/biblio_bibtex.install \biblio_bibtex_set_system_weight()
1 call to biblio_bibtex_set_system_weight()
- biblio_bibtex_enable in modules/bibtexParse/ biblio_bibtex.install 
File
- modules/bibtexParse/ biblio_bibtex.install, line 36 
- Database table creation for biblio_bibtex module.
Code
function biblio_bibtex_set_system_weight() {
  db_update('system')
    ->fields(array(
    'weight' => 22,
  ))
    ->condition('name', 'biblio_bibtex')
    ->execute();
}