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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
<?php
/**
* Copyright 2007-2014 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL-2). If you
* did not receive this file, see http://www.horde.org/licenses/lgpl.
*
* @author Jan Schneider <jan@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/lgpl LGPL-2
* @package Horde
*/
require_once __DIR__ . '/../lib/Application.php';
Horde_Registry::appInit('horde', array(
'permission' => array('horde:administration:alarms')
));
$horde_alarm = $injector->getInstance('Horde_Alarm');
$methods = array();
foreach ($horde_alarm->handlers() as $name => $method) {
$methods[$name] = $method->getDescription();
}
$vars = $injector->getInstance('Horde_Variables');
$form = new Horde_Form($vars, _("Add new alarm"));
$form->addHidden('', 'alarm', 'text', false);
$form->addVariable(_("Alarm title"), 'title', 'text', true);
$form->addVariable(_("Alarm start"), 'start', 'datetime', true);
$form->addVariable(_("Alarm end"), 'end', 'datetime', false);
$form->addVariable(_("Alarm text"), 'text', 'longtext', false);
$form->addVariable(_("Alarm methods"), 'methods', 'multienum', true, false, null, array($methods, min(5, count($methods))));
foreach ($horde_alarm->handlers() as $name => $method) {
$params = $method->getParameters();
if (!count($params)) {
continue;
}
$form->addVariable($method->getDescription(), '', 'header', false);
foreach ($params as $param => $param_info) {
$form->addVariable($param_info['desc'], $name . '_' . $param, $param_info['type'], false);
}
}
if ($form->validate()) {
$form->getInfo($vars, $info);
if (empty($info['alarm'])) {
$info['alarm'] = strval(new Horde_Support_Uuid());
}
$params = array();
foreach ($info['methods'] as $method) {
foreach ($info as $name => $value) {
if (strpos($name, $method . '_') === 0) {
$params[$method][substr($name, strlen($method) + 1)] = $value;
}
}
}
// Full path to any sound files.
if (!empty($params['notify']['sound'])) {
$params['notify']['sound'] = (string)Horde_Themes::sound($params['notify']['sound']);
}
try {
$horde_alarm->set(array(
'id' => $info['alarm'],
'title' => $info['title'],
'text' => $info['text'],
'start' => new Horde_Date($info['start']),
'end' => empty($info['end']) ? null : new Horde_Date($info['end']),
'methods' => $info['methods'],
'params' => $params
));
$notification->push(_("The alarm has been saved."), 'horde.success');
} catch (Horde_Alarm_Exception $e) {
$notification->push($e);
}
}
$id = $vars->get('alarm');
if ($id) {
if ($vars->get('delete')) {
try {
$horde_alarm->delete($id, '');
$notification->push(_("The alarm has been deleted."), 'horde.success');
} catch (Horde_Alarm_Exception $e) {
$notification->push($e);
$id = null;
}
} else {
try {
$alarm = $horde_alarm->get($id, '');
$form->setTitle(sprintf(_("Edit \"%s\""), $alarm['title']));
$vars->set('title', $alarm['title']);
$vars->set('text', $alarm['text']);
$vars->set('start', $alarm['start']->timestamp());
if (!empty($alarm['end'])) {
$vars->set('end', $alarm['end']->timestamp());
}
$vars->set('methods', $alarm['methods']);
foreach ($alarm['params'] as $method => $params) {
foreach ($params as $name => $value) {
$vars->set($method . '_' . $name, $value);
}
}
} catch (Horde_Alarm_Exception $e) {
$notification->push($alarm);
$id = $alarm = null;
}
}
}
$view = new Horde_View(array(
'templatePath' => HORDE_TEMPLATES . '/admin/alarms'
));
$view->addHelper('Text');
if ($horde_alarm instanceof Horde_Alarm_Null) {
$view->alarms = array();
$view->error = _("Alarms have been disabled in the configuration");
} else {
try {
$alarms = $horde_alarm->globalAlarms();
$url = Horde::url('admin/alarms.php');
foreach ($alarms as &$alarm) {
$url->add('alarm', $alarm['id']);
$alarm['edit_link'] = $url->link()
. htmlspecialchars($alarm['title'])
. '</a>';
$alarm['delete_link'] = $url->copy()
->add('delete', 1)
->link(array('title' => sprintf(_("Delete \"%s\""), $alarm['title']),
'onclick' => 'return confirm(\'' . addslashes(sprintf(_("Are you sure you want to delete '%s'?"), $alarm['title'])) . '\')'))
. Horde_Themes_Image::tag('delete.png')
. '</a>';
}
$view->alarms = $alarms;
} catch (Horde_Alarm_Exception $e) {
$view->alarms = array();
$view->error = sprintf(_("Listing alarms failed: %s"), $e->getMessage());
}
}
$page_output->header(array(
'title' => _("Alarms")
));
require HORDE_TEMPLATES . '/admin/menu.inc';
echo $view->render('list');
if (!($horde_alarm instanceof Horde_Alarm_Null)) {
$form->renderActive();
}
$page_output->footer();
|