get('format', 'short'); $product = $params->get('product', 0); $method = 'get' . ucfirst($format) . "Version"; // Get the joomla version $instance = new JVersion; $version = call_user_func(array($instance, $method)); if ($format == 'short' && !empty($product)) { // Add the product name to short format only (in long format it's included) $version = $instance->PRODUCT . ' ' . $version; } return $version; } }