Nils Jakobi
3414964272
All checks were successful
continuous-integration/drone/push Build is passing
35 lines
899 B
PHP
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 = "";
|
|
}
|
|
}
|