Ajout d'une commande sur chaque index.php permettant de garantir l'heure suivant si l'on est en été ou en hivers.prodstable
@@ -1,5 +1,7 @@ | |||
<?php | |||
date_default_timezone_set('Europe/Paris'); | |||
// NOTE: Make sure this file is not accessible when deployed to production | |||
if (!in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1'])) { | |||
die('You are not allowed to access this file.'); |
@@ -1,4 +1,7 @@ | |||
<?php | |||
date_default_timezone_set('Europe/Paris'); | |||
defined('YII_DEBUG') or define('YII_DEBUG', true); | |||
defined('YII_ENV') or define('YII_ENV', 'dev'); | |||
@@ -15,4 +18,7 @@ $config = yii\helpers\ArrayHelper::merge( | |||
); | |||
$application = new yii\web\Application($config); | |||
date_default_timezone_set('Europe/Paris'); | |||
$application->run(); |
@@ -1,5 +1,7 @@ | |||
<?php | |||
date_default_timezone_set('Europe/Paris'); | |||
// NOTE: Make sure this file is not accessible when deployed to production | |||
if (!in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1'])) { | |||
die('You are not allowed to access this file.'); |
@@ -1,4 +1,7 @@ | |||
<?php | |||
date_default_timezone_set('Europe/Paris'); | |||
defined('YII_DEBUG') or define('YII_DEBUG', true); | |||
defined('YII_ENV') or define('YII_ENV', 'dev'); | |||
@@ -15,4 +18,7 @@ $config = yii\helpers\ArrayHelper::merge( | |||
); | |||
$application = new yii\web\Application($config); | |||
date_default_timezone_set('Europe/Paris'); | |||
$application->run(); |
@@ -1,4 +1,7 @@ | |||
<?php | |||
date_default_timezone_set('Europe/Paris'); | |||
defined('YII_DEBUG') or define('YII_DEBUG', false); | |||
defined('YII_ENV') or define('YII_ENV', 'prod'); | |||
@@ -1,4 +1,7 @@ | |||
<?php | |||
date_default_timezone_set('Europe/Paris'); | |||
defined('YII_DEBUG') or define('YII_DEBUG', false); | |||
defined('YII_ENV') or define('YII_ENV', 'prod'); | |||