You are here

function i18nblocks_install in Internationalization 6

Same name and namespace in other branches
  1. 5.3 i18nblocks/i18nblocks.install \i18nblocks_install()
  2. 5 i18nblocks/i18nblocks.install \i18nblocks_install()
  3. 5.2 i18nblocks/i18nblocks.install \i18nblocks_install()

Implementation of hook_install().

1 call to i18nblocks_install()
i18nblocks_update_1 in i18nblocks/i18nblocks.install
Update: move old variable to new tables.

File

i18nblocks/i18nblocks.install, line 12
Installation file for i18nblocks module.

Code

function i18nblocks_install() {

  // Create database tables.
  drupal_install_schema('i18nblocks');

  // We dont need to change module weight

  //db_query("UPDATE {system} SET weight = 20 WHERE name = 'i18nblocks' AND type = 'module'");
}