2013-12-29 15:08:33 +01:00
|
|
|
<?php
|
|
|
|
|
2016-10-03 18:32:25 +02:00
|
|
|
/**
|
|
|
|
* returns a list of rooms.
|
2017-01-02 15:43:36 +01:00
|
|
|
*
|
2016-10-03 18:32:25 +02:00
|
|
|
* @param boolean $show_all returns also hidden rooms when true
|
2017-01-03 03:22:48 +01:00
|
|
|
* @return array|false
|
2016-10-03 18:32:25 +02:00
|
|
|
*/
|
2017-01-02 03:57:23 +01:00
|
|
|
function Rooms($show_all = false)
|
|
|
|
{
|
|
|
|
return sql_select("SELECT * FROM `Room`" . ($show_all ? "" : " WHERE `show`='Y'") . " ORDER BY `Name`");
|
2016-10-03 18:32:25 +02:00
|
|
|
}
|
|
|
|
|
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
|
2017-01-03 03:22:48 +01:00
|
|
|
* @return mysqli_result|false
|
2013-12-29 15:08:33 +01:00
|
|
|
*/
|
2017-01-02 03:57:23 +01:00
|
|
|
function Room_delete($room_id)
|
|
|
|
{
|
2017-01-03 14:12:17 +01:00
|
|
|
return sql_query('DELETE FROM `Room` WHERE `RID`=' . sql_escape($room_id));
|
2015-05-14 17:20:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new room
|
|
|
|
*
|
2017-01-02 15:43:36 +01:00
|
|
|
* @param string $name
|
2015-05-14 17:20:46 +02:00
|
|
|
* Name of the room
|
|
|
|
* @param boolean $from_frab
|
|
|
|
* Is this a frab imported room?
|
|
|
|
* @param boolean $public
|
|
|
|
* Is the room visible for angels?
|
2017-01-03 03:22:48 +01:00
|
|
|
* @param int $number
|
|
|
|
* Room number
|
|
|
|
* @return false|int
|
2015-05-14 17:20:46 +02:00
|
|
|
*/
|
2017-01-03 03:22:48 +01:00
|
|
|
function Room_create($name, $from_frab, $public, $number = null)
|
2017-01-02 03:57:23 +01:00
|
|
|
{
|
|
|
|
$result = sql_query("
|
2015-05-14 17:20:46 +02:00
|
|
|
INSERT INTO `Room` SET
|
|
|
|
`Name`='" . sql_escape($name) . "',
|
2015-12-29 17:57:16 +01:00
|
|
|
`FromPentabarf`='" . sql_escape($from_frab ? 'Y' : '') . "',
|
|
|
|
`show`='" . sql_escape($public ? 'Y' : '') . "',
|
2017-01-03 03:22:48 +01:00
|
|
|
`Number`=" . (int)$number
|
|
|
|
);
|
2017-01-02 03:57:23 +01:00
|
|
|
if ($result === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return sql_id();
|
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
|
|
|
|
* @param bool $show_only
|
2017-01-03 03:22:48 +01:00
|
|
|
* @return array|false
|
2013-12-29 15:08:33 +01:00
|
|
|
*/
|
2017-01-03 15:32:12 +01:00
|
|
|
function Room($room_id, $show_only = true)
|
2017-01-02 03:57:23 +01:00
|
|
|
{
|
2017-01-03 15:32:12 +01:00
|
|
|
$room_source = sql_select("
|
|
|
|
SELECT *
|
|
|
|
FROM `Room`
|
|
|
|
WHERE `RID`='" . sql_escape($room_id) . "'
|
|
|
|
" . ($show_only ? "AND `show` = 'Y'" : '')
|
|
|
|
);
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-01-02 03:57:23 +01:00
|
|
|
if ($room_source === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (count($room_source) > 0) {
|
|
|
|
return $room_source[0];
|
|
|
|
}
|
|
|
|
return null;
|
2013-12-29 15:08:33 +01:00
|
|
|
}
|