ffrs-fw-dl/webroot/ffrouter.class.php
Nils Jakobi 3414964272
All checks were successful
continuous-integration/drone/push Build is passing
changed folder structure and using php-fpm now
2020-01-04 15:36:10 +01:00

35 lines
899 B
PHP

<?php
/**
* @author Caspar Armster
* @copyright 2016 Caspar Armster, Freifunk Hennef/Freie Netzwerker e.V. (www.freifunk-hennef.de / www.freie-netzwerker.de)
* @license Licensed under GPLv3
*/
class ffrouter {
function __construct() {
$this->hersteller = "";
$this->modell = "";
$this->version = "";
$this->imagefront = "";
$this->imageback = "";
$this->betafactory = 0;
$this->betasysupgrade = 0;
$this->brokenfactory = 0;
$this->brokensysupgrade = 0;
$this->experimentalfactory = 0;
$this->experimentalsysupgrade = 0;
$this->stablefactory = 0;
$this->stablesysupgrade = 0;
$this->betafactorylink = "";
$this->betasysupgradelink = "";
$this->brokenfactorylink = "";
$this->brokensysupgradelink = "";
$this->experimentalfactorylink = "";
$this->experimentalsysupgradelink = "";
$this->stablefactorylink = "";
$this->stablesysupgradelink = "";
}
}