| 123456789101112131415161718 |
- <?php
- require_once DOL_DOCUMENT_ROOT . '/custom/bbus/class/bbdeviceposition.class.php';
- class GpsPosition
- {
- public function save(string $deviceId, string $lat, string $lon): bool
- {
- global $user, $db;
- $bbDevicePosition = new BbDevicePosition($db);
- $bbDevicePosition->ref = bin2hex(random_bytes(16));
- $bbDevicePosition->mac = $deviceId;
- $bbDevicePosition->lat = $lat;
- $bbDevicePosition->lon = $lon;
- return ($bbDevicePosition->create($user) > 0);
- }
- }
|