mirror of
https://github.com/Lukas0025/YAGS.git
synced 2025-04-04 06:51:33 +01:00
19 lines
925 B
PHP
19 lines
925 B
PHP
<?php
|
|
namespace DAL;
|
|
|
|
class target extends \wsos\database\core\row {
|
|
public \wsos\database\types\text $name; // noaa19, jonHAM, ... , ...
|
|
public \wsos\database\types\reference $type; // sat, groundStation, ...
|
|
public \wsos\database\types\text $description;
|
|
public \wsos\database\types\json $locator; // TLE, GPS or URL locator if avaible
|
|
|
|
function __construct($id = null, $name = "", $type = null, $description = "", $locator = ["tle" => null, "gps" => null, "url" => null]) {
|
|
parent::__construct($id);
|
|
$this->name = new \wsos\database\types\text($name);
|
|
$this->type = new \wsos\database\types\reference($type, );
|
|
|
|
$this->description = new \wsos\database\types\text($description);
|
|
$this->locator = new \wsos\database\types\json($locator);
|
|
}
|
|
}
|
|
?>
|