function i18n_supported_languages in Internationalization 5.2
Same name and namespace in other branches
- 5.3 i18n.module \i18n_supported_languages()
- 5 i18n.module \i18n_supported_languages()
- 6 i18n.module \i18n_supported_languages()
Get list of supported languages
Parameters
$all: TRUE to get all defined languages
22 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
File
- ./
i18n.module, line 353 - Internationalization (i18n) module
Code
function i18n_supported_languages($all = FALSE) {
return i18n_languages($all ? 'name' : 'active');
}