|
@@ 87-91 (lines=5) @@
|
| 84 |
|
$base = self::_mergeAndGetConf($sJsonFile, $base); |
| 85 |
|
} |
| 86 |
|
|
| 87 |
|
if (file_exists(str_replace('core', 'src'.DIRECTORY_SEPARATOR.$sPortal.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'conf', __DIR__).DIRECTORY_SEPARATOR.$sName.'.conf-dev') && getenv('DEV') == 1) { |
| 88 |
|
|
| 89 |
|
$sJsonFile = str_replace('core', 'src'.DIRECTORY_SEPARATOR.$sPortal.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'conf', __DIR__).DIRECTORY_SEPARATOR.$sName.'.conf-dev'; |
| 90 |
|
$base = self::_mergeAndGetConf($sJsonFile, $base); |
| 91 |
|
} |
| 92 |
|
|
| 93 |
|
if (file_exists(str_replace('core', 'conf', __DIR__).DIRECTORY_SEPARATOR.$sName.'.conf-dev') && getenv('DEV') == 1) { |
| 94 |
|
|
|
@@ 99-103 (lines=5) @@
|
| 96 |
|
$base = self::_mergeAndGetConf($sJsonFile, $base); |
| 97 |
|
} |
| 98 |
|
|
| 99 |
|
if (file_exists(str_replace('core', 'src'.DIRECTORY_SEPARATOR.$sPortal.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'conf', __DIR__).DIRECTORY_SEPARATOR.$sName.'.conf-dev') && getenv('PROD') == 1) { |
| 100 |
|
|
| 101 |
|
$sJsonFile = str_replace('core', 'src'.DIRECTORY_SEPARATOR.$sPortal.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'conf', __DIR__).DIRECTORY_SEPARATOR.$sName.'.conf-prod'; |
| 102 |
|
$base = self::_mergeAndGetConf($sJsonFile, $base); |
| 103 |
|
} |
| 104 |
|
|
| 105 |
|
if (file_exists(str_replace('core', 'conf', __DIR__).DIRECTORY_SEPARATOR.$sName.'.conf-dev') && getenv('PROD') == 1) { |
| 106 |
|
|
|
@@ 111-115 (lines=5) @@
|
| 108 |
|
$base = self::_mergeAndGetConf($sJsonFile, $base); |
| 109 |
|
} |
| 110 |
|
|
| 111 |
|
if (file_exists(str_replace('core', 'src'.DIRECTORY_SEPARATOR.$sPortal.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'conf', __DIR__).DIRECTORY_SEPARATOR.$sName.'.conf-dev') && getenv('PREPROD') == 1) { |
| 112 |
|
|
| 113 |
|
$sJsonFile = str_replace('core', 'src'.DIRECTORY_SEPARATOR.$sPortal.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'conf', __DIR__).DIRECTORY_SEPARATOR.$sName.'.conf-pprod'; |
| 114 |
|
$base = self::_mergeAndGetConf($sJsonFile, $base); |
| 115 |
|
} |
| 116 |
|
|
| 117 |
|
if (file_exists(str_replace('core', 'conf', __DIR__).DIRECTORY_SEPARATOR.$sName.'.conf-dev') && getenv('PREPROD') == 1) { |
| 118 |
|
|
|
@@ 123-127 (lines=5) @@
|
| 120 |
|
$base = self::_mergeAndGetConf($sJsonFile, $base); |
| 121 |
|
} |
| 122 |
|
|
| 123 |
|
if (file_exists(str_replace('core', 'src'.DIRECTORY_SEPARATOR.$sPortal.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'conf', __DIR__).DIRECTORY_SEPARATOR.$sName.'.conf-dev') && getenv('RECETTE') == 1) { |
| 124 |
|
|
| 125 |
|
$sJsonFile = str_replace('core', 'src'.DIRECTORY_SEPARATOR.$sPortal.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'conf', __DIR__).DIRECTORY_SEPARATOR.$sName.'.conf-rec'; |
| 126 |
|
$base = self::_mergeAndGetConf($sJsonFile, $base); |
| 127 |
|
} |
| 128 |
|
|
| 129 |
|
if (file_exists(str_replace('core', 'conf', __DIR__).DIRECTORY_SEPARATOR.$sName.'.conf-dev') && getenv('RECETTE') == 1) { |
| 130 |
|
|