forked from verdnatura/hedera-web
20 lines
390 B
PHP
20 lines
390 B
PHP
<?php
|
|
|
|
class Production extends Vn\Web\JsonRequest
|
|
{
|
|
const PARAMS = ['deviceId'];
|
|
|
|
function run ($db)
|
|
{
|
|
$row = $db->getObject (
|
|
'SELECT displayText FROM production WHERE deviceId = #',
|
|
[$_REQUEST['deviceId']]
|
|
);
|
|
|
|
if (!isset($row))
|
|
throw new Vn\Lib\UserException ('Device not found');
|
|
|
|
return $row->displayText;
|
|
}
|
|
}
|