29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-08-04 18:20:29 +00:00
cms/index.php

37 lines
1.0 KiB
PHP
Raw Normal View History

<?php
/**
2012-06-30 21:09:54 +00:00
* @package Joomla.Site
*
2019-03-09 10:20:38 +00:00
* @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
2012-06-30 21:09:54 +00:00
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
2017-02-24 17:36:30 +00:00
/**
2016-09-16 23:33:07 +00:00
* 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
*/
2017-02-24 17:36:30 +00:00
/**
* Define the application's minimum supported PHP version as a constant so it can be referenced within the application.
*/
2019-06-17 14:25:08 +00:00
define('JOOMLA_MINIMUM_PHP', '7.2');
if (version_compare(PHP_VERSION, JOOMLA_MINIMUM_PHP, '<'))
{
2017-11-22 23:33:13 +00:00
die(
str_replace(
'{{PHP_VERSION}}',
JOOMLA_MINIMUM_PHP,
2017-11-22 23:33:13 +00:00
file_get_contents(dirname(__FILE__) . '/templates/system/incompatible.html')
)
);
}
/**
* Constant that is checked in included files to prevent direct access.
* define() is used rather than "const" to not error for PHP 5.2 and lower
*/
define('_JEXEC', 1);
// Run the application - All executable code should be triggered through this file
2017-02-24 17:41:16 +00:00
require_once dirname(__FILE__) . '/includes/app.php';