Files

16 lines
610 B
PHP
Raw Permalink Normal View History

2017-05-01 23:49:11 -05:00
<?php
if (is_numeric($vars['id'])) {
2020-09-21 15:40:17 +02:00
$sensor = dbFetchRow('SELECT * FROM `wireless_sensors` WHERE `sensor_id` = ?', [$vars['id']]);
2017-05-01 23:49:11 -05:00
if (is_numeric($sensor['device_id']) && ($auth || device_permitted($sensor['device_id']))) {
$device = device_by_id_cache($sensor['device_id']);
2020-09-21 15:40:17 +02:00
$rrd_filename = rrd_name($device['hostname'], ['wireless-sensor', $sensor['sensor_class'], $sensor['sensor_type'], $sensor['sensor_index']]);
2017-05-01 23:49:11 -05:00
2020-09-21 15:40:17 +02:00
$title = generate_device_link($device);
$title .= ' :: Wireless Sensor :: ' . htmlentities($sensor['sensor_descr']);
$auth = true;
2017-05-01 23:49:11 -05:00
}
}