Skip to content

Instantly share code, notes, and snippets.

@escopecz
Created August 19, 2014 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save escopecz/5aa413e1107f5cc72277 to your computer and use it in GitHub Desktop.
Save escopecz/5aa413e1107f5cc72277 to your computer and use it in GitHub Desktop.
Check / get / compare Joomla version
if (version_compare(JVERSION, '3.0.0', '>'))
{
// code for J!3.0.0 and newer
}
else
{
// code for older J! versions
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment