function biblio_xml_set_system_weight in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/endnote/biblio_xml.install \biblio_xml_set_system_weight()
 - 7.2 modules/endnote/biblio_xml.install \biblio_xml_set_system_weight()
 
1 call to biblio_xml_set_system_weight()
- biblio_xml_enable in modules/
endnote/ biblio_xml.install  
File
- modules/
endnote/ biblio_xml.install, line 41  - Database table creation for biblio_xml module.
 
Code
function biblio_xml_set_system_weight() {
  db_update('system')
    ->fields(array(
    'weight' => 26,
  ))
    ->condition('name', 'biblio_xml')
    ->execute();
}