Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
611 B
PHP
Raw Permalink Normal View History

2017-05-01 23:49:11 -05:00
<?php
if (is_numeric($vars['id'])) {
$sensor = dbFetchRow('SELECT * FROM `wireless_sensors` WHERE `sensor_id` = ?', [$vars['id']]);
if (is_numeric($sensor['device_id']) && ($auth || device_permitted($sensor['device_id']))) {
$device = device_by_id_cache($sensor['device_id']);
2021-03-28 17:25:30 -05: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
$title = generate_device_link($device);
$title .= ' :: Wireless Sensor :: ' . htmlentities($sensor['sensor_descr']);
$auth = true;
}
}