Mammut-CMS is Free Software.'; public static function isCompatible($minimum) { return version_compare(self::EMU_VERSION, $minimum, 'ge'); } /** * Gets a "PHP standardized" version string for the current Joomla Platform. * * @return string Version string. * * @since 11.1 */ public static function getShortVersion() { return self::RELEASE . '.' . self::MAINTENANCE; } /** * Gets a version string for the current Joomla Platform with all release information. * * @return string Complete version string. * * @since 11.1 */ public static function getLongVersion() { return self::PRODUCT . ' ' . self::RELEASE . '.' . self::MAINTENANCE . ' ' . self::STATUS . ' [ ' . self::CODE_NAME . ' ] ' . self::RELEASE_DATE . ' ' . self::RELEASE_TIME . ' ' . self::RELEASE_TIME_ZONE; } }