function locale_install
Same name and namespace in other branches
- 7.x drupal-7.x/modules/locale/locale.install \locale_install()
Implementation of hook_install().
Archivo
- drupal-6.x/
modules/ locale/ locale.install, line 6
Código
function locale_install() {
// locales_source.source and locales_target.target are not used as binary
// fields; non-MySQL database servers need to ensure the field type is text
// and that LIKE produces a case-sensitive comparison.
// Create tables.
drupal_install_schema('locale');
db_query("INSERT INTO {languages} (language, name, native, direction, enabled, weight, javascript) VALUES ('en', 'English', 'English', '0', '1', '0', '')");
}