1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<?php
/**
* $Horde: kronolith/index.php,v 1.28.10.2 2008/01/02 11:32:16 jan Exp $
*
* Copyright 1999-2008 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* not receive such a file, see also http://www.fsf.org/copyleft/gpl.html.
*/
@define('KRONOLITH_BASE', dirname(__FILE__));
$kronolith_configured = (is_readable(KRONOLITH_BASE . '/config/conf.php') &&
is_readable(KRONOLITH_BASE . '/config/prefs.php'));
if (!$kronolith_configured) {
require KRONOLITH_BASE . '/../lib/Test.php';
Horde_Test::configFilesMissing('Kronolith', KRONOLITH_BASE,
array('conf.php', 'prefs.php'));
}
require_once KRONOLITH_BASE . '/lib/base.php';
require KRONOLITH_BASE . '/' . $prefs->getValue('defaultview') . '.php';
|