示例#1
0
 /**
  * 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);
 }
示例#3
0
 /**
  * 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);
 }
示例#4
0
 /**
  * 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);
 }
示例#5
0
 /**
  * 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);
 }
示例#6
0
 /**
  * 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);
 }
示例#8
0
 /**
  * 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);
 }
示例#10
0
 /**
  * ServerConfig constructor.
  * @param array $properties_x
  */
 public function __construct(array $properties_x)
 {
     parent::__construct($properties_x);
     $this->initProperty('conf_pptp', PPTPConfig::class);
 }
示例#11
0
 /**
  * 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);
 }
示例#13
0
 /**
  * StorageDisk constructor.
  * @param array $properties_x
  */
 public function __construct(array $properties_x)
 {
     parent::__construct($properties_x);
     $this->initPropertyArray('partitions', DiskPartition::class);
 }
示例#14
0
 /**
  * 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);
 }