drupal_init_language

Versions
6
drupal_init_language()

Choose a language for the current page, based on site and user preferences.

▾ 3 functions call drupal_init_language()

install_main in ./install.php
The Drupal installation happens in a series of steps. We begin by verifying that the current environment meets our minimum requirements. We then go on to verify that settings.php is properly configured. From there we connect to the configured database...
_db_error_page in includes/database.inc
Helper function to show fatal database errors.
_drupal_bootstrap in includes/bootstrap.inc

Code

includes/bootstrap.inc, line 1110

<?php
function drupal_init_language() {
  global $language, $user;

  // Ensure the language is correctly returned, even without multilanguage support.
  // Useful for eg. XML/HTML 'lang' attributes.
  if (variable_get('language_count', 1) == 1) {
    $language = language_default();
  }
  else {
    include_once './includes/language.inc';
    $language = language_initialize();
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.