diff options
author | Evgeny Sorokin <me@ch1p.io> | 2024-01-17 03:35:59 +0300 |
---|---|---|
committer | Evgeny Sorokin <me@ch1p.io> | 2024-01-17 03:35:59 +0300 |
commit | a9a241ad19449c29b68cd4a5b539bcbec816e341 (patch) | |
tree | 2ebfc73b206e4cec30fd94613bd6bf42ef5b269d /localwebsite/handlers | |
parent | 8a89dd77be03ca8eb9cdc378ba8e912292494fa9 (diff) |
lws: pump page rewritten to python
Diffstat (limited to 'localwebsite/handlers')
-rw-r--r-- | localwebsite/handlers/MiscHandler.php | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/localwebsite/handlers/MiscHandler.php b/localwebsite/handlers/MiscHandler.php index 4c5a25e..efaca22 100644 --- a/localwebsite/handlers/MiscHandler.php +++ b/localwebsite/handlers/MiscHandler.php @@ -3,17 +3,6 @@ class MiscHandler extends RequestHandler { - public function GET_main() { - global $config; - $this->tpl->set_title('Главная'); - $this->tpl->set([ - 'grafana_sensors_url' => $config['grafana_sensors_url'], - 'grafana_inverter_url' => $config['grafana_inverter_url'], - 'cameras' => $config['cam_list']['labels'] - ]); - $this->tpl->render_page('index.twig'); - } - public function GET_sensors_page() { global $config; @@ -30,29 +19,6 @@ class MiscHandler extends RequestHandler $this->tpl->render_page('sensors.twig'); } - public function GET_pump_page() { - global $config; - - if (isset($_GET['alt']) && $_GET['alt'] == 1) - $config['pump_host'] = '192.168.5.223'; - - list($set) = $this->input('set'); - $client = new GPIORelaydClient($config['pump_host'], $config['pump_port']); - - if ($set == GPIORelaydClient::STATUS_ON || $set == GPIORelaydClient::STATUS_OFF) { - $client->setStatus($set); - redirect('/pump/'); - } - - $status = $client->getStatus(); - - $this->tpl->set([ - 'status' => $status - ]); - $this->tpl->set_title('Насос'); - $this->tpl->render_page('pump.twig'); - } - public function GET_cams() { global $config; @@ -160,12 +126,4 @@ class MiscHandler extends RequestHandler } } - public function GET_debug() { - print_r($_SERVER); - } - - public function GET_phpinfo() { - phpinfo(); - } - } |