You are here

function i18n_supported_languages in Internationalization 5.3

Same name and namespace in other branches
  1. 5 i18n.module \i18n_supported_languages()
  2. 5.2 i18n.module \i18n_supported_languages()
  3. 6 i18n.module \i18n_supported_languages()

Get list of supported languages

Parameters

$all: TRUE to get all defined languages

21 calls to i18n_supported_languages()
i18nblocks_form in i18nblocks/i18nblocks.module
Form for multilingual blocks
i18nblocks_update_1 in i18nblocks/i18nblocks.install
Update: move old variable to new tables
i18nprofile_translation_category in i18nprofile/i18nprofile.module
Form to translate category names
i18nprofile_translation_field in i18nprofile/i18nprofile.module
Form to translate profile field
i18nprofile_translation_overview in i18nprofile/i18nprofile.module
Overview profile translations

... See full list

File

./i18n.module, line 396
Internationalization (i18n) module

Code

function i18n_supported_languages($all = FALSE) {
  return i18n_languages($all ? 'name' : 'active');
}