Changeset 379 for trunk/Modules/Network/Network.php
- Timestamp:
- Jan 20, 2012, 9:17:37 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Network/Network.php
r378 r379 169 169 } 170 170 171 class NetworkAP extends Model 172 { 173 function __construct($Database, $System) 174 { 175 parent::__construct($Database, $System); 176 $this->Name = 'NetworkAP'; 177 $this->AddPropertyString('SSID'); 178 $this->AddPropertyInteger('Frequency'); 179 $this->AddPropertyInteger('ChannelWidth'); 180 $this->AddPropertyOneToMany('NetworkDevice', 'NetworkDevice'); 181 } 182 } 183 184 171 185 172 186 class EmailView extends ViewForm … … 239 253 $this->SupportedModels = array('NetworkDevice', 'NetworkDeviceType', 'NetworkInterface', 240 254 'NetworkInterfaceType', 'NetworkPoint', 'NetworkLink', 'NetworkSubnet', 241 'NetworkSegment' );255 'NetworkSegment', 'NetworkAP'); 242 256 } 243 257
Note:
See TracChangeset
for help on using the changeset viewer.