drupal_language_types
- Versions
- 7
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.
Code
includes/bootstrap.inc, line 1778
<?php
function drupal_language_types() {
return array(
LANGUAGE_TYPE_CONTENT => TRUE,
LANGUAGE_TYPE_INTERFACE => TRUE,
LANGUAGE_TYPE_URL => FALSE,
);
}
?>Login or register to post comments 