array( "$root_dir_path/includes/config.local.yml", ), 'templates' => array( 'static_directories' => array( "$root_dir_path/static" ), ), 'default' => array( 'upload_max_filesize' => 10485760, 'i18n' => array( 'default_locale' => "en_US.UTF8", ), ), ), $root_dir_path ); $sentry_span = new SentrySpan('core.init', 'Core initialization'); require_once('functions.php'); // Nomenclatures $status_list = array ( 'pending' => ___('Pending'), 'validated' => ___('Validated'), 'refused' => ___('Refused'), 'archived' => ___('Archived'), ); foreach($status_list as $key => $value) $status_list[$key] = _($value); require_once('cli.php'); require_once('templates.php'); require_once('url-helpers.php'); require_once('db.php'); $sentry_span->finish(); # vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab