66 lines
2.0 KiB
PHP
66 lines
2.0 KiB
PHP
<?php
|
|
|
|
error_reporting(E_ALL | E_STRICT);
|
|
|
|
require_once dirname(__DIR__, 2) . '/application/preload.php';
|
|
|
|
// Ensure library/ is on include_path
|
|
set_include_path(implode(PATH_SEPARATOR, [
|
|
realpath('./library'),
|
|
get_include_path(),
|
|
]));
|
|
|
|
// Ensure library/ is on include_path
|
|
set_include_path(implode(PATH_SEPARATOR, [
|
|
get_include_path(),
|
|
realpath(APPLICATION_PATH . '/../library'),
|
|
]));
|
|
|
|
// Ensure vendor/ is on the include path
|
|
set_include_path(implode(PATH_SEPARATOR, [
|
|
get_include_path(),
|
|
realpath(APPLICATION_PATH . '/../vendor'),
|
|
realpath(APPLICATION_PATH . '/../vendor/zf1s/zend-loader/library'),
|
|
]));
|
|
|
|
set_include_path(implode(PATH_SEPARATOR, [
|
|
get_include_path(),
|
|
realpath(APPLICATION_PATH . '/../vendor/libretime/propel1/runtime/lib'),
|
|
]));
|
|
|
|
// Ensure library/ is on include_path
|
|
set_include_path(implode(PATH_SEPARATOR, [
|
|
get_include_path(),
|
|
realpath(APPLICATION_PATH . '/../../install_minimal/include'),
|
|
]));
|
|
|
|
Logging::setLogPath(LIBRETIME_LOG_FILEPATH);
|
|
|
|
set_include_path(APPLICATION_PATH . '/common' . PATH_SEPARATOR . get_include_path());
|
|
|
|
// Propel classes.
|
|
set_include_path(APPLICATION_PATH . '/models' . PATH_SEPARATOR . get_include_path());
|
|
|
|
// Services
|
|
set_include_path(APPLICATION_PATH . '/services' . PATH_SEPARATOR . get_include_path());
|
|
|
|
// models
|
|
set_include_path(APPLICATION_PATH . '/models' . PATH_SEPARATOR . get_include_path());
|
|
|
|
// Controllers.
|
|
set_include_path(APPLICATION_PATH . '/controllers' . PATH_SEPARATOR . get_include_path());
|
|
|
|
// Controller plugins.
|
|
set_include_path(APPLICATION_PATH . '/controllers/plugins' . PATH_SEPARATOR . get_include_path());
|
|
|
|
// test data
|
|
set_include_path(APPLICATION_PATH . '/../tests/application/testdata' . PATH_SEPARATOR . get_include_path());
|
|
|
|
// helper functions
|
|
set_include_path(APPLICATION_PATH . '/../tests/application/helpers' . PATH_SEPARATOR . get_include_path());
|
|
|
|
require_once 'libretime/propel1/runtime/lib/Propel.php';
|
|
Propel::init('../application/configs/airtime-conf-production.php');
|
|
|
|
Zend_Session::start();
|