3 * @file mod_roomReservationConfigPage.inc
4 * The configuration page
5 * @author Roland Hieber (roland.hieber@wilhelm-gym.net)
8 * Copyright © 2007 Roland Hieber
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:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
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
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");
35 class mod_roomReservationConfigPage extends mod_roomReservationPage {
37 protected $bPostShowWeekend;
38 protected $bPostShowLessons;
39 protected $asMessages = array();
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");
51 public function processRequestVariables() {
53 $this->bPostShowWeekend = $this->oCfg->isShowWeekend();
54 $this->bPostShowLessons = $this->oCfg->isShowLessons();
56 if(isset($_POST["mod_roomReservationConfigPage"])) {
57 if(isset($_POST["mod_roomReservationConfigPage"]["showweekend"])) {
58 $this->bPostShowWeekend =
59 ($_POST["mod_roomReservationConfigPage"]["showweekend"] == true);
62 if(isset($_POST["mod_roomReservationConfigPage"]["showlessons"])) {
63 $this->bPostShowLessons =
64 ($_POST["mod_roomReservationConfigPage"]["showlessons"] == true);
67 // process the request
68 if(isset($_POST["mod_roomReservationConfigPage"]["submit"])) {
69 $this->oCfg->setShowWeekend($this->bPostShowWeekend);
70 $this->oCfg->setShowLessons($this->bPostShowLessons);
72 $this->oCfg->writeConfig();
73 } catch(Exception $e) {
74 $this->asMessages[] = $e->getMessage();
80 public function doShow() {
82 if(count($this->asMessages) > 0) {
83 printf("<p>%s</p>", nl2br(q(join("\n", $this->asMessages))));
87 echo "<table border='0' cellspacing='10' cellpadding='0'><tr>".
88 "<td style='width:50%;'>\n";
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;'>";
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 ".
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)));
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)));
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:all users") :
127 icon("act-group") . join(", ", array_map("getGroupName", $asAdminGroups)));
128 echo "</tr></table></p>\n";
132 echo "</td><td><!--second row-->\n";
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. g. correspond to a lesson."));
138 echo "<div style='margin:8px;'>";
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"]);
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 ".
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 „lesson” texts"),
167 _c("room-reservation:Check this box to show texts like ".
168 "„<i>n</i>th lesson&rdquo in the booking page. If this box is ".
169 "unchecked, none of these texts are shown."));
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";
176 echo "</td></tr></table>\n";