You are here

function biblio_marc_set_system_weight in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 modules/marcParse/biblio_marc.install \biblio_marc_set_system_weight()
  2. 7.2 modules/marcParse/biblio_marc.install \biblio_marc_set_system_weight()
1 call to biblio_marc_set_system_weight()
biblio_marc_enable in modules/marcParse/biblio_marc.install

File

modules/marcParse/biblio_marc.install, line 36
Database table creation for biblio_marc module.

Code

function biblio_marc_set_system_weight() {
  db_update('system')
    ->fields(array(
    'weight' => 24,
  ))
    ->condition('name', 'biblio_marc')
    ->execute();
}