drupal_language_types

Versions
mediamosa-21
drupal_language_types()

The built-in language types.

Return value

An array of key-values pairs where the key is the language type and the value is its configurability.

▾ 3 functions call drupal_language_types()

language_types in includes/bootstrap.inc
Return an array of the available language types.
language_types_configurable in includes/language.inc
Return only the configurable language types.
language_types_disable in includes/language.inc
Disable the given language types.

Code

includes/bootstrap.inc, line 2087

<?php
function drupal_language_types() {
  return array(
    LANGUAGE_TYPE_INTERFACE => TRUE,
    LANGUAGE_TYPE_CONTENT => FALSE,
    LANGUAGE_TYPE_URL => FALSE,
  );
}
?>