You are here

i18n_boxes.install in Boxes translation 6

Same filename and directory in other branches
  1. 7 i18n_boxes.install

Install, update and uninstall functions for the i18n_boxes module.

File

i18n_boxes.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the i18n_boxes module.
 */

/**
 * Implements hook_install().
 */
function i18n_boxes_install() {

  // Update the weight of this module to come later than i18nblocks in the
  // module chain.
  db_query("UPDATE {system} SET weight = %d WHERE name = '%s' AND type = '%s'", 5, 'i18n_boxes', 'module');
}

Functions

Namesort descending Description
i18n_boxes_install Implements hook_install().