91 lines
2.7 KiB
PHP
91 lines
2.7 KiB
PHP
<?php
|
|
|
|
require __DIR__.'/core/registry.php';
|
|
require __DIR__.'/core/helper.php';
|
|
require __DIR__.'/core/translator.php';
|
|
|
|
$registry = new Core\Registry;
|
|
|
|
$registry->db_version = 10;
|
|
|
|
$registry->db = function() use ($registry) {
|
|
require __DIR__.'/vendor/PicoDb/Database.php';
|
|
require __DIR__.'/models/schema.php';
|
|
|
|
$db = new \PicoDb\Database(array(
|
|
'driver' => 'sqlite',
|
|
'filename' => DB_FILENAME
|
|
));
|
|
|
|
if ($db->schema()->check($registry->db_version)) {
|
|
return $db;
|
|
}
|
|
else {
|
|
die('Unable to migrate database schema!');
|
|
}
|
|
};
|
|
|
|
$registry->event = function() use ($registry) {
|
|
require __DIR__.'/core/event.php';
|
|
return new \Core\Event;
|
|
};
|
|
|
|
$registry->action = function() use ($registry) {
|
|
require_once __DIR__.'/models/action.php';
|
|
return new \Model\Action($registry->shared('db'), $registry->shared('event'));
|
|
};
|
|
|
|
$registry->config = function() use ($registry) {
|
|
require_once __DIR__.'/models/config.php';
|
|
return new \Model\Config($registry->shared('db'), $registry->shared('event'));
|
|
};
|
|
|
|
$registry->acl = function() use ($registry) {
|
|
require_once __DIR__.'/models/acl.php';
|
|
return new \Model\Acl($registry->shared('db'), $registry->shared('event'));
|
|
};
|
|
|
|
$registry->user = function() use ($registry) {
|
|
require_once __DIR__.'/models/user.php';
|
|
return new \Model\User($registry->shared('db'), $registry->shared('event'));
|
|
};
|
|
|
|
$registry->comment = function() use ($registry) {
|
|
require_once __DIR__.'/models/comment.php';
|
|
return new \Model\Comment($registry->shared('db'), $registry->shared('event'));
|
|
};
|
|
|
|
$registry->task = function() use ($registry) {
|
|
require_once __DIR__.'/models/task.php';
|
|
return new \Model\Task($registry->shared('db'), $registry->shared('event'));
|
|
};
|
|
|
|
$registry->board = function() use ($registry) {
|
|
require_once __DIR__.'/models/board.php';
|
|
return new \Model\Board($registry->shared('db'), $registry->shared('event'));
|
|
};
|
|
|
|
$registry->project = function() use ($registry) {
|
|
require_once __DIR__.'/models/project.php';
|
|
return new \Model\Project($registry->shared('db'), $registry->shared('event'));
|
|
};
|
|
|
|
$registry->action = function() use ($registry) {
|
|
require_once __DIR__.'/models/action.php';
|
|
return new \Model\Action($registry->shared('db'), $registry->shared('event'));
|
|
};
|
|
|
|
if (file_exists('config.php')) require 'config.php';
|
|
|
|
// Auto-refresh frequency in seconds for the public board view
|
|
defined('AUTO_REFRESH_DURATION') or define('AUTO_REFRESH_DURATION', 60);
|
|
|
|
// Custom session save path
|
|
defined('SESSION_SAVE_PATH') or define('SESSION_SAVE_PATH', '');
|
|
|
|
// Database filename
|
|
defined('DB_FILENAME') or define('DB_FILENAME', 'data/db.sqlite');
|
|
|
|
// Application version
|
|
defined('APP_VERSION') or define('APP_VERSION', 'master');
|