removed other obsolete code and task tags, wrapped text to 80 columns
[iserv-mod-room-reservation.git] / inc / mod_roomReservationBookingsManager.inc
index 124068d..c91f34a 100644 (file)
@@ -135,7 +135,6 @@ class mod_roomReservationBookingsManager {
    * @param $ob (mod_roomReservationBooking) Booking to write to the database
    * @return (int) The UID of the written booking
    * @throws SQLException, AccessException
-   * @todo document
    */
   function write(mod_roomReservationBooking $ob) {
     // protect access
@@ -184,7 +183,7 @@ class mod_roomReservationBookingsManager {
       // No UID yet, insert new booking
       // @todo write interval and user if interval > 0
       $strLog = sprintf("Raum „%s“ am %s von %s bis %s gebucht ".
-       "(Begründung: %s)", $ob->getRoom(), date("d\.m\.Y", $ob->getDate()),
+        "(Begründung: %s)", $ob->getRoom(), date("d\.m\.Y", $ob->getDate()),
         gmdate("G:i", $oTsB[$ob->getTsFirst()]), gmdate("G:i",
         $oTsE[$ob->getTsLast()]), $ob->getReason());
     } else {
@@ -221,7 +220,6 @@ class mod_roomReservationBookingsManager {
    * Delete a booking from the database
    * @param $nUid (int) Unique ID of the booking
    * @return (bool) <tt>true</tt> on success, otherwise <tt>false</tt>.
-   * @todo test
    */
   public function delete($nUid) {
     // Only administrators and owners are allowed to delete bookings
@@ -240,7 +238,7 @@ class mod_roomReservationBookingsManager {
       $oTsE[$ob->getTsLast()]), $ob->getReason());
     // Delete it from the database
     if(!db_query("DELETE FROM mod_roomreservation_bookings WHERE ".
-       "rrb_uid = $1;", $nUid)) {
+      "rrb_uid = $1;", $nUid)) {
       throw new SQLException(MOD_ROOM_RESERVATION_ERROR_SQL);
       return false;
     } else {
@@ -261,7 +259,7 @@ class mod_roomReservationBookingsManager {
       return false;   // user is not logged in
     } else {
       $hQuery = db_query("SELECT rrb_act FROM mod_roomreservation_bookings WHERE ".
-       "rrb_uid = $1;", intval($nID));
+        "rrb_uid = $1;", intval($nID));
       if(!is_resource($hQuery)) {
         throw new SQLException(MOD_ROOM_RESERVATION_ERROR_SQL);
         return false;
This page took 0.02341 seconds and 4 git commands to generate.