Файл: concrete5.7.5.6/application/bootstrap/start.php
Строк: 20
<?php
use ConcreteCoreApplicationApplication;
/**
* ----------------------------------------------------------------------------
* Instantiate concrete5
* ----------------------------------------------------------------------------
*/
$app = new Application();
/**
* ----------------------------------------------------------------------------
* Detect the environment based on the hostname of the server
* ----------------------------------------------------------------------------
*/
$app->detectEnvironment(
array(
'local' => array(
'hostname'
),
'production' => array(
'live.site'
)
));
return $app;