function i18n_supported_languages in Internationalization 6
Same name and namespace in other branches
- 5.3 i18n.module \i18n_supported_languages()
- 5 i18n.module \i18n_supported_languages()
- 5.2 i18n.module \i18n_supported_languages()
Get list of supported languages, native name.
Parameters
$all: TRUE to get all defined languages.
Related topics
4 calls to i18n_supported_languages()
- i18nblocks_update_1 in i18nblocks/
i18nblocks.install - Update: move old variable to new tables.
- i18ntaxonomy_translation_overview in i18ntaxonomy/
i18ntaxonomy.admin.inc - Generate a tabular listing of translations for vocabularies.
- i18ntaxonomy_translation_save in i18ntaxonomy/
i18ntaxonomy.admin.inc - Save taxonomy term translations.
- i18ntaxonomy_translation_term_form in i18ntaxonomy/
i18ntaxonomy.admin.inc - Produces a vocabulary translation form.
File
- ./
i18n.module, line 858 - Internationalization (i18n) module.
Code
function i18n_supported_languages($all = FALSE) {
return locale_language_list('native', $all);
}