1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
<?php
/**
* Kronolith base inclusion file.
*
* This file brings in all of the dependencies that every Kronolith
* script will need, and sets up objects that all scripts use.
*
* The following variables, defined in the script that calls this one, are
* used:
* - $session_control - Sets special session control limitations
*
* $Horde: kronolith/lib/base.php,v 1.117.8.13 2008/02/11 17:10:16 chuck Exp $
*
* @package Kronolith
*/
/* Check for a prior definition of HORDE_BASE (perhaps by an auto_prepend_file
* definition for site customization). */
if (!defined('HORDE_BASE')) {
define('HORDE_BASE', dirname(__FILE__) . '/../..');
}
/* Load the Horde Framework core, and set up inclusion paths. */
require_once HORDE_BASE . '/lib/core.php';
/* Registry. */
$session_control = Util::nonInputVar('session_control');
if ($session_control == 'none') {
$registry = &Registry::singleton(HORDE_SESSION_NONE);
} elseif ($session_control == 'readonly') {
$registry = &Registry::singleton(HORDE_SESSION_READONLY);
} else {
$registry = &Registry::singleton();
}
if (is_a(($pushed = $registry->pushApp('kronolith', !defined('AUTH_HANDLER'))), 'PEAR_Error')) {
if ($pushed->getCode() == 'permission_denied') {
Horde::authenticationFailureRedirect();
}
Horde::fatal($pushed, __FILE__, __LINE__, false);
}
$conf = &$GLOBALS['conf'];
define('KRONOLITH_TEMPLATES', $registry->get('templates'));
/* Find the base file path of Kronolith. */
if (!defined('KRONOLITH_BASE')) {
define('KRONOLITH_BASE', dirname(__FILE__) . '/..');
}
/* Horde framework libraries. */
require_once 'Horde/Date.php';
require_once 'Horde/Help.php';
require_once 'Horde/History.php';
/* Notification system. */
$notification = &Notification::singleton();
$notification->attach('status');
/* Kronolith base library. */
require_once KRONOLITH_BASE . '/lib/Kronolith.php';
require_once KRONOLITH_BASE . '/lib/Driver.php';
require_once KRONOLITH_BASE . '/lib/Recurrence.php';
/* Categories. */
require_once 'Horde/Prefs/CategoryManager.php';
$GLOBALS['cManager'] = new Prefs_CategoryManager();
$GLOBALS['cManager_fgColors'] = $GLOBALS['cManager']->fgColors();
/* PEAR Date_Calc. */
require_once 'Date/Calc.php';
/* Start compression, if requested. */
Horde::compressOutput();
/* Set the timezone variable, if available. */
NLS::setTimeZone();
/* Create a calendar backend object. */
$GLOBALS['kronolith_driver'] = &Kronolith_Driver::factory();
/* Create a share instance. */
require_once 'Horde/Share.php';
$GLOBALS['kronolith_shares'] = &Horde_Share::singleton($registry->getApp());
Kronolith::initialize();
|