fixed translation: if it is not granted at all, the admin privilege does _not_ apply...
[iserv-mod-room-reservation.git] / inc / mod_roomReservationConfigPage.inc
1 <?php
2 /**
3 * @file mod_roomReservationConfigPage.inc
4 * The configuration page
5 * @author Roland Hieber (roland.hieber@wilhelm-gym.net)
6 * @date 24.06.2008
7 *
8 * Copyright © 2007 Roland Hieber
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining
11 * copy of this software and associated documentation files (the "Software"),
12 * to deal in the Software without restriction, including without limitation
13 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
14 * and/or sell copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * THE SOFTWARE.
27 */
28
29 require_once("ctrl.inc");
30 require_once("mod_room-reservation/mod_roomReservationPage.inc");
31 require_once("mod_room-reservation/mod_roomReservationTimesliceListBox.inc");
32 require_once("mod_room-reservation/mod_roomReservationRoomWhitelistListBox.inc");
33
34 /** @todo document */
35 class mod_roomReservationConfigPage extends mod_roomReservationPage {
36
37 protected $bPostShowWeekend;
38 protected $bPostShowLessons;
39 protected $asMessages = array();
40 protected $otlb;
41 protected $orwlb;
42
43 public function __construct(mod_roomReservationConfig &$oCfg) {
44 parent::__construct($oCfg);
45 $this->otlb = new mod_roomReservationTimesliceListBox($this->oCfg);
46 $this->orwlb = new mod_roomReservationRoomWhitelistListBox($this->oCfg);
47 $this->setTitle(_c("room-reservation:Configuration"));
48 $this->setIcon("mod_room-reservation_config");
49 }
50
51 public function processRequestVariables() {
52 // default values
53 $this->bPostShowWeekend = $this->oCfg->isShowWeekend();
54 $this->bPostShowLessons = $this->oCfg->isShowLessons();
55
56 if(isset($_POST["mod_roomReservationConfigPage"])) {
57 if(isset($_POST["mod_roomReservationConfigPage"]["showweekend"])) {
58 $this->bPostShowWeekend =
59 ($_POST["mod_roomReservationConfigPage"]["showweekend"] == true);
60 }
61
62 if(isset($_POST["mod_roomReservationConfigPage"]["showlessons"])) {
63 $this->bPostShowLessons =
64 ($_POST["mod_roomReservationConfigPage"]["showlessons"] == true);
65 }
66
67 // process the request
68 if(isset($_POST["mod_roomReservationConfigPage"]["submit"])) {
69 $this->oCfg->setShowWeekend($this->bPostShowWeekend);
70 $this->oCfg->setShowLessons($this->bPostShowLessons);
71 try {
72 $this->oCfg->writeConfig();
73 } catch(Exception $e) {
74 $this->asMessages[] = $e->getMessage();
75 }
76 }
77 }
78 }
79
80 public function doShow() {
81 // error messages
82 if(count($this->asMessages) > 0) {
83 printf("<p>%s</p>", nl2br(q(join("\n", $this->asMessages))));
84 }
85
86 // first column
87 echo "<table border='0' cellspacing='10' cellpadding='0'><tr>".
88 "<td style='width:50%;'>\n";
89
90 GroupBox(_c("room-reservation:Available rooms"), "host");
91 printf("<p>%s</p>", _c("room-reservation:The following rooms are ".
92 "available for booking:"));
93 echo "<div style='margin:8px;'>";
94 $this->orwlb->show();
95 echo "</div>\n";
96 _GroupBox();
97
98 GroupBox(_("Privileges"), "keys");
99 $asAdminGroups = rrPrivilegedGroups("mod_roomreservation_admin");
100 $asBookGroups = rrPrivilegedGroups("mod_roomreservation_book");
101 $asViewGroups = rrPrivilegedGroups("mod_roomreservation_view");
102 echo sprintf("<p>%s</p>\n<p>%s</p>\n<p>%s</p>", _c("room-reservation:This is ".
103 "a short summary of the privileges related to the room reservation ".
104 "schedulde and the groups which have them assigned."),
105 sprintf(_c("room-reservation:If one of these privileges is not assigned to ".
106 "any group, all users on this server are allowed to perform the specified ".
107 "action. Please use the %sgroup administration%s to assign and revoke ".
108 "privileges."), "<a href='/idesk/admin/act/groups.php'>", "</a>"),
109 _c("room-reservation:Please note that every group with the booking ".
110 "privilege can also implicitly view the booking table and every group with ".
111 "the administration privilege can also implicitly book and view the ".
112 "booking table."));
113 echo "<p><table style='width:100%'><tr>\n";
114 echo sprintf("<td>%s%s</td><td>%s</td>\n", icon("keys"),
115 _("View the booking table").":", $asViewGroups == array() ?
116 _c("room-reservation:all users") : icon("act-group") . join(", ",
117 array_map("getGroupName", $asViewGroups)));
118 echo "</tr><tr>\n";
119 echo sprintf("<td>%s%s</td><td>%s</td>\n", icon("keys"),
120 _("Book rooms").":", $asBookGroups == array() ?
121 _c("room-reservation:all users") : icon("act-group") . join(", ",
122 array_map("getGroupName", $asBookGroups)));
123 echo "</tr><tr>\n";
124 echo sprintf("<td>%s%s</td><td>%s</td>\n", icon("keys"),
125 _("Administration of the room reservation schedule"),
126 $asAdminGroups == array() ? _c("room-reservation:no users") :
127 icon("act-group") . join(", ", array_map("getGroupName", $asAdminGroups)));
128 echo "</tr></table></p>\n";
129 _GroupBox();
130
131 // second column
132 echo "</td><td><!--second row-->\n";
133
134 GroupBox(_c("room-reservation:Periods"), "mod_room-reservation_timeslice");
135 printf("<p>%s</p>", _c("room-reservation:Here you can fill in the ".
136 "periods where bookings can be undertaken. A booking period can ".
137 "e.&nbsp;g. correspond to a lesson."));
138 echo "<div style='margin:8px;'>";
139 $this->otlb->show();
140 echo "</div>\n";
141 _GroupBox();
142
143 GroupBox(_c("room-reservation:Further options"), "manage");
144 printf("<div style='margin:8px;'><form action='%s' method='post'>".
145 "<table><tr>\n", $_SERVER["PHP_SELF"]);
146
147 printf("<td><input type='hidden' name='mod_roomReservationConfigPage".
148 "[showweekend]' value='0' /><%s name='mod_roomReservationConfigPage".
149 "[showweekend]' id='mod_roomReservationConfigPageShowWeekend' ".
150 "value='1' %s /></td><td><label for='".
151 "mod_roomReservationConfigPageShowWeekend'><b>%s</b></label><br />".
152 "<span class='mod_roomReservationConfigPageExplanation'>%s</span></p>",
153 $GLOBALS["smlchk"], $this->bPostShowWeekend ? "checked='checked' " : "",
154 _c("room-reservation:Show weekend"), _c("room-reservation:If ".
155 "selected, the weekdays saturday and sunday are also shown in the ".
156 "booking table."));
157
158 echo "</tr><tr>\n";
159 printf("<td><input type='hidden' name='mod_roomReservationConfigPage".
160 "[showlessons]' value='0' /><%s name='mod_roomReservationConfigPage".
161 "[showlessons]' id='mod_roomReservationConfigPageShowLessons' ".
162 "value='1'%s /></td><td><label for='".
163 "mod_roomReservationConfigPageShowLessons'><b>%s</b></label><br />".
164 "<span class='mod_roomReservationConfigPageExplanation'>%s</span></p>",
165 $GLOBALS["smlchk"], $this->bPostShowLessons ? "checked='checked' " : "",
166 _c("room-reservation:Show &bdquo;lesson&rdquo; texts"),
167 _c("room-reservation:Check this box to show texts like ".
168 "&bdquo;<i>n</i>th lesson&rdquo in the booking page. If this box is ".
169 "unchecked, none of these texts are shown."));
170
171 printf("</tr><tr><td colspan='2'><%s name='mod_roomReservationConfigPage".
172 "[submit]' value='%s' /></td>", $GLOBALS["stdbtn"], _("OK"));
173 echo "</tr></table></form></div>\n";
174 _GroupBox();
175
176 echo "</td></tr></table>\n";
177 }
178 }
179 ?>
This page took 0.082816 seconds and 5 git commands to generate.