drupal_multilingual

Versions
mediamosa-21
drupal_multilingual()

Return true if there is more than one language enabled.

▾ 5 functions call drupal_multilingual()

drupal_language_initialize in includes/bootstrap.inc
Initialize all the defined language types.
language_list in includes/bootstrap.inc
Get a list of languages set up indexed by the specified key
locale_block_view in modules/locale/locale.module
Implements hook_block_view().
locale_entity_info_alter in modules/locale/locale.module
Implements hook_entity_info_alter().
locale_form_alter in modules/locale/locale.module
Implements hook_form_alter().

Code

includes/bootstrap.inc, line 2098

<?php
function drupal_multilingual() {
  return variable_get('language_count', 1) > 1;
}
?>