function language_types

Returns an array of the available language types.

Return value

An array of all language types where the keys of each are the language type name and its value is its configurability (TRUE/FALSE).

5 calls to language_types()
6 string references to 'language_types'

File

drupal/includes/bootstrap.inc, line 3006
Functions that need to be loaded on every Drupal request.

Code

function language_types() {
  return array_keys(variable_get('language_types', drupal_language_types()));
}