* @git Kumwe CMS * @license GNU General Public License version 2; see LICENSE.txt */ // NOTE: This file should remain compatible with PHP 5.2 to allow us to run our PHP minimum check and show a friendly error message // source: https://github.com/joomla/joomla-cms/blob/4.1-dev/index.php#L9 // Define the application's minimum supported PHP version as a constant, so it can be referenced within the application. define('KUMWE_MINIMUM_PHP', '7.2.5'); if (version_compare(PHP_VERSION, KUMWE_MINIMUM_PHP, '<')) { die( str_replace( '{{phpversion}}', KUMWE_MINIMUM_PHP, file_get_contents(dirname(__FILE__) . '/templates/system/incompatible.html') ) ); } /** * Constant that is checked in included files to prevent direct access. */ define('_LEXEC', 1); // We must setup some house rules, since we can't have all // this code just doing what it wants can we?... <>yn growling require_once dirname(__FILE__) . '/includes/app.php';