You are here

function biblio_enable in Bibliography Module 6.2

Same name and namespace in other branches
  1. 6 biblio.install \biblio_enable()
  2. 7.3 biblio.install \biblio_enable()
  3. 7 biblio.install \biblio_enable()
  4. 7.2 biblio.install \biblio_enable()

Implements hook_enable().

File

./biblio.install, line 50
Install, update, and uninstall functions for the biblio module.

Code

function biblio_enable() {
  if (module_exists('taxonomy')) {
    _biblio_enable_vocabularies();
  }

  // Adjust the weight of the biblio module in the collection of modules.
  _biblio_set_module_system_weight();
}