You are here

function biblio_tagged_set_system_weight in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 modules/endnote/biblio_tagged.install \biblio_tagged_set_system_weight()
  2. 7.2 modules/endnote/biblio_tagged.install \biblio_tagged_set_system_weight()
1 call to biblio_tagged_set_system_weight()
biblio_tagged_enable in modules/endnote/biblio_tagged.install

File

modules/endnote/biblio_tagged.install, line 36
Database table creation for biblio_tagged module.

Code

function biblio_tagged_set_system_weight() {
  db_update('system')
    ->fields(array(
    'weight' => 22,
  ))
    ->condition('name', 'biblio_tagged')
    ->execute();
}