eesyphp/example/includes/core.php

67 lines
1.6 KiB
PHP
Raw Normal View History

2020-04-18 00:51:33 +02:00
<?php
use EesyPHP\App;
use EesyPHP\I18n;
2023-01-29 18:17:50 +01:00
use EesyPHP\SentrySpan;
2020-04-18 00:51:33 +02:00
error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED);
// Root directory path
$script = null;
if (defined('__FILE__') && constant('__FILE__')) {
2022-04-24 17:43:44 +02:00
$script = __FILE__;
2020-04-18 00:51:33 +02:00
}
else {
2022-04-24 17:43:44 +02:00
// Fallback method : detect path from core.php path
foreach(get_included_files() as $script)
if (basename($script) == 'core.php')
break;
2020-04-18 00:51:33 +02:00
}
if (!$script) die('Fail to detect root directory path');
$root_dir_path = realpath(dirname($script).'/../');
2020-04-18 00:51:33 +02:00
// Include App's includes and vendor directories to PHP include paths
set_include_path($root_dir_path.'/includes' . PATH_SEPARATOR . get_include_path());
// Load composer autoload.php
require("$root_dir_path/../vendor/autoload.php");
2020-04-18 00:51:33 +02:00
// Initialize EesyPHP application
App::init(
"$root_dir_path/includes/config.yml",
array(
'overwrite_config_files' => array(
"$root_dir_path/includes/config.local.yml",
),
'templates' => array(
'static_directories' => array(
"$root_dir_path/static"
),
),
),
$root_dir_path
2023-01-29 18:17:50 +01:00
);
$sentry_span = new SentrySpan('core.init', 'Core initialization');
2020-04-18 00:51:33 +02:00
require_once('functions.php');
// Nomenclatures
$status_list = array (
'pending' => I18n :: ___('Pending'),
'validated' => I18n :: ___('Validated'),
'refused' => I18n :: ___('Refused'),
'archived' => I18n :: ___('Archived'),
2020-04-18 00:51:33 +02:00
);
foreach($status_list as $key => $value)
$status_list[$key] = _($value);
2020-04-18 00:51:33 +02:00
require_once('cli.php');
require_once('templates.php');
2020-04-18 00:51:33 +02:00
require_once('url-helpers.php');
require_once('db.php');
$sentry_span->finish();
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab