You are here

biblio_rtf.install in Bibliography Module 7

Same filename and directory in other branches
  1. 6.2 modules/rtf/biblio_rtf.install
  2. 7.2 modules/rtf/biblio_rtf.install

Database table creation for biblio_rtf module.

File

modules/rtf/biblio_rtf.install
View source
<?php

/**
 * @file
 * Database table creation for biblio_rtf module.
 */

/**
 * Implementation of hook_install().
 */
function biblio_rtf_install() {
}

/**
 *
 */
function biblio_rtf_uninstall() {
}

/**
 *
 */
function biblio_rtf_enable() {
  biblio_rtf_set_system_weight();
}

/**
 *
 */
function biblio_rtf_set_system_weight() {
  db_update('system')
    ->fields(array(
    'weight' => 22,
  ))
    ->condition('name', 'biblio_rtf')
    ->execute();
}