| 123456789101112131415161718 |
- <?php
- if (isset($_GET["command"])) {
- switch ($_GET["command"]) {
- case "official_channels.list":
- require("../.htconfig.php");
- global $dblink;
- $chanList = $dblink->query("SELECT channel, default_join FROM knacki_official;");
- $chanList->setFetchMode(PDO::FETCH_OBJ);
- $result = array();
- while ($i = $chanList->fetch())
- array_push($result, $i);
- echo json_encode($result);
- break;
- }
- }
- ?>
|