Skip to content

Instantly share code, notes, and snippets.

@Jiwoks
Created June 24, 2013 21:02
Show Gist options
  • Select an option

  • Save Jiwoks/5853581 to your computer and use it in GitHub Desktop.

Select an option

Save Jiwoks/5853581 to your computer and use it in GitHub Desktop.
<?php
public function getJoomlaVersion($format='short'){
$method = 'get' . ucfirst($format) . "Version";
// Get the joomla version
$instance = new JVersion();
$version = call_user_func(array($instance, $method));
return $version;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment