You are here

function i18n_access_install in Translation Access 6

Same name and namespace in other branches
  1. 7 i18n_access.install \i18n_access_install()

Implementation of hook_install().

File

./i18n_access.install, line 36
file_description

Code

function i18n_access_install() {
  drupal_install_schema('i18n_access');

  // Set module weight for it to run after core and i18n modules
  db_query("UPDATE {system} SET weight = 20 WHERE name = 'i18n_access' AND type = 'module'");
}