renamed to iserv-mod-room-reservation; changelog.html points to Debian changelog
[iserv-mod-room-reservation.git] / includes / functions.inc
old mode 100755 (executable)
new mode 100644 (file)
index bdb79a6..78e3690
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file functions.inc
- * additional functions for iserv-room-reservation
+ * additional functions for iserv-mod-room-reservation
  * @author Roland Hieber (roland.hieber@wilhelm-gym.net)
  * @date 22.12.2007
  * 
@@ -72,6 +72,9 @@ define("MOD_ROOM_RESERVATION_ERROR_CONFIG_NO_SUCH_TIMESLICE",
 /** There is no such account */
 define("MOD_ROOM_RESERVATION_ERROR_NO_SUCH_ACCOUNT", _c("room-reservation:".
   "The specified account does not exist."));
+/** The room is not available for booking */
+define("MOD_ROOM_RESERVATION_ERROR_ROOM_NOT_WHITELISTED",
+  _c("room-reservation:This room is not available for booking."));
 /**
  * @}
  */
@@ -222,7 +225,7 @@ function rrGetMonday($ts = null) {
 }
 
 /** (array of strings) Additional CSS rules */
-$rsLocalCss = array();
+$GLOBALS["rrLocalCss"] = array();
 
 /**
  * Add CSS rules to the page
@@ -230,17 +233,17 @@ $rsLocalCss = array();
  * @return void
  */
 function rrAddCss($s) {
-  rrDebug("rsAddCss: add \"$s\"");
-  $GLOBALS["rsLocalCss"][] = $s;
+  rrDebug("rrAddCss: add \"$s\"");
+  $GLOBALS["rrLocalCss"][] = $s;
 }
 
 /**
- * Get CSS rules that have been added with rmAddCss()
+ * Get CSS rules that have been added with rrAddCss()
  * @return string
  */
-function rrGetCSS() {
-  rrDebug("rsGetCss: Local CSS is ".var_export($GLOBALS["rsLocalCss"], true));
-  return implode("\n", $GLOBALS["rsLocalCss"]);
+function rrGetCss() {
+  rrDebug("rrGetCss: Local CSS is ".var_export($GLOBALS["rrLocalCss"], true));
+  return implode("\n", $GLOBALS["rrLocalCss"]);
 }
 
 function rrDebug($s, $bReturn = false) {
This page took 0.022297 seconds and 4 git commands to generate.