2013-12-29 15:08:33 +01:00
|
|
|
<?php
|
|
|
|
|
2017-01-21 13:58:53 +01:00
|
|
|
use Engelsystem\Database\DB;
|
|
|
|
|
2016-10-03 18:32:25 +02:00
|
|
|
/**
|
|
|
|
* returns a list of rooms.
|
2017-01-02 15:43:36 +01:00
|
|
|
*
|
2017-01-21 13:58:53 +01:00
|
|
|
* @return array
|
2016-10-03 18:32:25 +02:00
|
|
|
*/
|
2017-12-10 15:02:37 +01:00
|
|
|
function Rooms()
|
2017-01-02 03:57:23 +01:00
|
|
|
{
|
2017-12-10 15:02:37 +01:00
|
|
|
return DB::select('SELECT * FROM `Room` ORDER BY `Name`');
|
2016-10-03 18:32:25 +02:00
|
|
|
}
|
|
|
|
|
2017-11-24 12:01:19 +01:00
|
|
|
/**
|
|
|
|
* Returns Room id array
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function Room_ids()
|
|
|
|
{
|
|
|
|
$result = DB::select('SELECT `RID` FROM `Room`');
|
|
|
|
return select_array($result, 'RID', 'RID');
|
|
|
|
}
|
|
|
|
|
2013-12-29 15:08:33 +01:00
|
|
|
/**
|
2015-05-14 17:20:46 +02:00
|
|
|
* Delete a room
|
2016-10-03 18:32:25 +02:00
|
|
|
*
|
2017-01-02 03:57:23 +01:00
|
|
|
* @param int $room_id
|
2013-12-29 15:08:33 +01:00
|
|
|
*/
|
2017-01-02 03:57:23 +01:00
|
|
|
function Room_delete($room_id)
|
|
|
|
{
|
2017-07-28 18:50:00 +02:00
|
|
|
DB::delete('DELETE FROM `Room` WHERE `RID` = ?', [$room_id]);
|
2015-05-14 17:20:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new room
|
|
|
|
*
|
2017-01-21 13:58:53 +01:00
|
|
|
* @param string $name Name of the room
|
|
|
|
* @param boolean $from_frab Is this a frab imported room?
|
2017-12-10 15:02:37 +01:00
|
|
|
* @param string $map_url URL to a map tha can be displayed in an iframe
|
|
|
|
* @param description markdown description
|
2017-01-03 03:22:48 +01:00
|
|
|
* @return false|int
|
2015-05-14 17:20:46 +02:00
|
|
|
*/
|
2017-12-10 15:02:37 +01:00
|
|
|
function Room_create($name, $from_frab, $map_url, $description)
|
2017-01-02 03:57:23 +01:00
|
|
|
{
|
2017-07-23 11:46:54 +02:00
|
|
|
DB::insert('
|
2017-12-10 15:02:37 +01:00
|
|
|
INSERT INTO `Room` (`Name`, `from_frab`, `map_url`, `description`)
|
2017-01-21 13:58:53 +01:00
|
|
|
VALUES (?, ?, ?, ?)
|
|
|
|
',
|
|
|
|
[
|
|
|
|
$name,
|
2017-12-10 15:02:37 +01:00
|
|
|
(int) $from_frab,
|
|
|
|
$map_url,
|
|
|
|
$description,
|
2017-01-21 13:58:53 +01:00
|
|
|
]
|
2017-01-03 03:22:48 +01:00
|
|
|
);
|
2017-01-21 13:58:53 +01:00
|
|
|
|
|
|
|
return DB::getPdo()->lastInsertId();
|
2013-12-29 15:08:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns room by id.
|
|
|
|
*
|
2017-01-03 15:32:12 +01:00
|
|
|
* @param int $room_id RID
|
2017-07-17 23:08:15 +02:00
|
|
|
* @param bool $onlyVisible
|
2017-01-03 03:22:48 +01:00
|
|
|
* @return array|false
|
2013-12-29 15:08:33 +01:00
|
|
|
*/
|
2017-12-10 15:02:37 +01:00
|
|
|
function Room($room_id)
|
2017-01-02 03:57:23 +01:00
|
|
|
{
|
2017-07-28 20:11:09 +02:00
|
|
|
return DB::selectOne('
|
2017-01-03 15:32:12 +01:00
|
|
|
SELECT *
|
|
|
|
FROM `Room`
|
2017-12-10 15:02:37 +01:00
|
|
|
WHERE `RID` = ?',
|
2017-01-21 13:58:53 +01:00
|
|
|
[$room_id]
|
2017-01-03 15:32:12 +01:00
|
|
|
);
|
2013-12-29 15:08:33 +01:00
|
|
|
}
|