You are here

function locale_install in Drupal 7

Same name and namespace in other branches
  1. 8 core/modules/locale/locale.install \locale_install()
  2. 5 modules/locale/locale.install \locale_install()
  3. 6 modules/locale/locale.install \locale_install()
  4. 9 core/modules/locale/locale.install \locale_install()
  5. 10 core/modules/locale/locale.install \locale_install()

Implements hook_install().

File

modules/locale/locale.install, line 11
Install, update and uninstall functions for the locale module.

Code

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.
  db_insert('languages')
    ->fields(array(
    'language' => 'en',
    'name' => 'English',
    'native' => 'English',
    'direction' => 0,
    'enabled' => 1,
    'weight' => 0,
    'javascript' => '',
  ))
    ->execute();
}