Skip to content

Instantly share code, notes, and snippets.

@fschell
Last active September 24, 2015 13:31
Show Gist options
  • Save fschell/29e5ce36edd2fc4e400c to your computer and use it in GitHub Desktop.
Save fschell/29e5ce36edd2fc4e400c to your computer and use it in GitHub Desktop.
Joomla get Language
// get language
$lang = JFactory::getLanguage()->getLocale()[4];
if ($lang === 'en') {
...
}
//-----------------------------------------------------------------------------------
// inject it into javascript global namespace (e.g. in joomla template index.php)
<script>
window.myLang = '<?php echo JFactory::getLanguage()->getLocale()[4]; ?>';
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment