summaryrefslogtreecommitdiff
path: root/includes/model/Room_model.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2013-12-29 15:08:33 +0100
committerPhilip Häusler <msquare@notrademark.de>2013-12-29 15:08:33 +0100
commit8fa78b55ac2327f87d492cf483a7d77b79ae8db0 (patch)
tree5ffc3fd40be53501c6b21604f8c66d9a529ca80c /includes/model/Room_model.php
parenta041e0efbb9825a9c8d77cba989dcea27d0f825d (diff)
first api new files
Diffstat (limited to 'includes/model/Room_model.php')
-rw-r--r--includes/model/Room_model.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/includes/model/Room_model.php b/includes/model/Room_model.php
new file mode 100644
index 00000000..fea241a6
--- /dev/null
+++ b/includes/model/Room_model.php
@@ -0,0 +1,31 @@
+<?php
+
+/**
+ * Returns room id array
+ */
+function mRoomList() {
+ $room_source = sql_select("SELECT `RID` FROM `Room`");
+ if ($room_source === false)
+ return false;
+ if (count($room_source) > 0)
+ return $room_source;
+ return null;
+}
+
+
+/**
+ * Returns room by id.
+ *
+ * @param $id RID
+ */
+function mRoom($id) {
+ $room_source = sql_select("SELECT * FROM `Room` WHERE `RID`=" . sql_escape($id) . " LIMIT 1");
+ if ($room_source === false)
+ return false;
+ if (count($room_source) > 0)
+ return $room_source[0];
+ return null;
+}
+
+
+?>