function i18n_boxes_install in Boxes translation 6
Same name and namespace in other branches
- 7 i18n_boxes.install \i18n_boxes_install()
Implements hook_install().
File
- ./
i18n_boxes.install, line 11 - Install, update and uninstall functions for the i18n_boxes module.
Code
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');
}