You are here

function allowed_languages_install in Allowed Languages 8

Implements hook_install().

File

./allowed_languages.install, line 11
Installation functions for Allowed Languages module.

Code

function allowed_languages_install() {

  // Make sure the allowed languages module runs after the content translation
  // module so that we can access changes it's made through alter hooks etc.
  module_set_weight('allowed_languages', 20);
}