/** * FreeplugNetwork constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initProperty('status', XdslStatus::class); $this->initProperty('down', XdslStats::class); $this->initProperty('up', XdslStats::class); }
/** * FreeplugNetwork constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initProperty('throttling_rate', DlRate::class); $this->initProperty('nzb_config_status', NzbConfigStatus::class); $this->initProperty('dht_stats', DhtStats::class); }
/** * LanHost constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initPropertyArray('l2ident', LanHostL2Ident::class); $this->initPropertyArray('names', LanHostName::class); $this->initPropertyArray('l3connectivities', LanHostL3Connectivity::class); }
/** * AP constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initProperty('status', APStatus::class); $this->initProperty('capabilities', APCapabilities::class); $this->initProperty('config', APConfig::class); }
/** * Station constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initProperty('host', LanHost::class); $this->initProperty('flags', Flags::class); $this->initProperty('last_rx', Stats::class); $this->initProperty('last_tx', Stats::class); }
/** * FreeplugNetwork constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initPropertyArray('addresses', ContactAddress::class); $this->initPropertyArray('emails', ContactEmail::class); $this->initPropertyArray('numbers', ContactNumber::class); $this->initPropertyArray('urls', ContactUrl::class); }
/** * DownloadConfig constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initProperty('throttling', DlThrottlingConfig::class); $this->initProperty('news', DlNewsConfig::class); $this->initProperty('bt', DlBtConfig::class); $this->initProperty('feed', DlFeedConfig::class); $this->initProperty('blocklist', DlBlockListConfig::class); }
/** * Status constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initProperty('stats', Stats::class); $this->initProperty('IPv4', IpInfo::class); }
/** * UpnpIgdRedirection constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initProperty('host', LanHost::class); }
/** * ServerConfig constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initProperty('conf_pptp', PPTPConfig::class); }
/** * DiskPartition constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initProperty('operation_pct', OperationProgress::class); }
/** * DlThrottlingConfig constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initProperty('$normal', DlRate::class); $this->initProperty('slow', DlRate::class); }
/** * StorageDisk constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initPropertyArray('partitions', DiskPartition::class); }
/** * AP constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initProperty('ht', APHtConfig::class); }
/** * FreeplugNetwork constructor. * @param array $properties_x */ public function __construct(array $properties_x) { parent::__construct($properties_x); $this->initPropertyArray('members', Freeplug::class); }