fix reconnectLte
[GitHub/Stricted/speedport-hybrid-php-api.git] / tests / Data.class.php
1 <?php
2 require_once('../SpeedportHybrid.class.php');
3 /**
4 * @author Jan Altensen (Stricted)
5 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
6 * @copyright 2015-2016 Jan Altensen (Stricted)
7 */
8 class Data extends SpeedportHybrid {
9 public function getDSL () {
10 return $this->getData('dsl');
11 }
12
13 public function getInterfaces () {
14 return $this->getData('interfaces');
15 }
16
17 public function getArp () {
18 return $this->getData('arp');
19 }
20
21 public function getSession () {
22 return $this->getData('session');
23 }
24
25 public function getDHCPClient () {
26 return $this->getData('dhcp_client');
27 }
28
29 public function getDHCPServer () {
30 return $this->getData('dhcp_server');
31 }
32
33 public function getIPv6 () {
34 return $this->getData('ipv6');
35 }
36
37 public function getDNS () {
38 return $this->getData('dns');
39 }
40
41 public function getRouting () {
42 return $this->getData('routing');
43 }
44
45 public function getIGMPProxy () {
46 return $this->getData('igmp_proxy');
47 }
48
49 public function getIGMPSnooping () {
50 return $this->getData('igmp_snooping');
51 }
52
53 public function getWLAN () {
54 return $this->getData('wlan');
55 }
56
57 public function getModule () {
58 return $this->getData('module');
59 }
60
61 public function getMemory () {
62 return $this->getData('memory');
63 }
64
65 public function getSpeed () {
66 return $this->getData('speed');
67 }
68
69 public function getWebDAV () {
70 return $this->getData('webdav');
71 }
72
73 public function getBondingClient () {
74 return $this->getData('bonding_client');
75 }
76
77 public function getBondingTunnel () {
78 return $this->getData('bonding_tunnel');
79 }
80
81 public function getFilterList () {
82 return $this->getData('filterlist');
83 }
84
85 public function getBondingTR181 () {
86 return $this->getData('bonding_tr181');
87 }
88
89 public function getLTEInfo () {
90 return $this->getData('lteinfo');
91 }
92
93 public function getStatus () {
94 return $this->getData('Status');
95 }
96 }