You are here

function biblio_bibtex_set_system_weight in Bibliography Module 7.2

Same name and namespace in other branches
  1. 6.2 modules/bibtexParse/biblio_bibtex.install \biblio_bibtex_set_system_weight()
  2. 7 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 26
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();
}