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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
<?php
/**
* $Horde: kronolith/prefs.php,v 1.13.2.8 2005/01/03 11:25:58 jan Exp $
*
* Copyright 2001-2005 Jon Parise <jon@horde.org>
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*/
/**
* Call PrefsUI::groupIsEditable() here because we can rely on it being present
* in Horde 2.1 but the prefs template still calls groupIsEditable().
*/
function groupIsEditable($group)
{
return PrefsUI::groupIsEditable($group);
}
function handle_category_management($updated)
{
global $prefs;
$actionID = Horde::getFormData('managementActionID');
$categoryID = Horde::getFormData('category_id');
$categoryName = Horde::getFormData('category_name');
$newcolors = Horde::getFormData('newColors');
/* Always save colors. */
$event_colors = '';
foreach ($newcolors as $key => $color) {
$event_colors .= (empty($event_colors)) ? "$key:$color" : "|$key:$color";
}
$prefs->setValue('event_colors', $event_colors);
switch ($actionID) {
case KRONOLITH_DELETE_CATEGORY:
Kronolith::deleteCategory($categoryID);
break;
case KRONOLITH_RENAME_CATEGORY:
Kronolith::renameCategory($categoryID, $categoryName);
break;
case KRONOLITH_ADD_CATEGORY:
Kronolith::addCategory($categoryName);
break;
default:
/* Must have been the Save button. */
$update = true;
return true;
}
/* Return false so it stays on this page. */
return false;
}
function prefs_callback()
{
global $prefs, $js_onLoad;
if ($prefs->isDirty('language')) {
$js_onLoad = 'if (window.parent.frames.horde_menu) window.parent.frames.horde_menu.location.reload();';
}
}
define('KRONOLITH_BASE', dirname(__FILE__));
require_once KRONOLITH_BASE . '/lib/base.php';
require_once HORDE_BASE . '/lib/PrefsUI.php';
require KRONOLITH_BASE . '/config/prefs.php';
/* See if we have a preferences group set. */
$group = Horde::getFormData('group');
$js_onLoad = null;
if (PrefsUI::handleForm($group)) {
$group = null;
include KRONOLITH_BASE . '/config/prefs.php';
}
$title = _("User Options");
require KRONOLITH_TEMPLATES . '/common-header.inc';
require KRONOLITH_BASE . '/menu.php';
$notification->notify();
/* Assign variables for select lists. */
if (!$prefs->isLocked('timezone')) {
$timezone_options = &$tz;
}
if (!$prefs->isLocked('day_hour_start') || !$prefs->isLocked('day_hour_end')) {
$day_hour_start_options = array();
for ($i = 0; $i <= 48; $i++) {
$day_hour_start_options[$i] = date(($prefs->getValue('twentyFour')) ? 'G:i' : 'g:ia', mktime(0, $i * 30, 0));
}
$day_hour_end_options = $day_hour_start_options;
}
/* Show the UI. */
PrefsUI::generateUI($group);
$registry->shutdown();
require KRONOLITH_TEMPLATES . '/common-footer.inc';
|