Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 3100 → Rev 3179

/web/acc/phpsysinfo/includes/to/device/class.NetDevice.inc.php
68,6 → 68,13
private $_info = null;
 
/**
* string with bridge
*
* @var string
*/
private $_bridge = null;
 
/**
* transmitted bytes rate
*
* @var int
236,7 → 243,34
{
$this->_info = $info;
}
 
/**
* Returns $_bridge.
*
* @see NetDevice::$_bridge
*
* @return String
*/
public function getBridge()
{
return $this->_bridge;
}
 
/**
* Sets $_bridge.
*
* @param String $bridge bridge string
*
* @see NetDevice::$_bridge
*
* @return void
*/
public function setBridge($bridge)
{
$this->_bridge = $bridge;
}
 
/**
* Returns $_rxRate.
*
* @see NetDevice::$_rxRate
/web/acc/phpsysinfo/includes/to/device/class.UPSDevice.inc.php
63,7 → 63,7
/**
* temperature of the ups
*
* @var int
* @var string
*/
private $_temperatur = null;
 
91,7 → 91,7
/**
* line volt
*
* @var int
* @var float
*/
private $_lineVoltage = null;
 
105,7 → 105,7
/**
* current load of the ups in percent
*
* @var int
* @var float
*/
private $_load = null;
 
119,7 → 119,7
/**
* current battery volt
*
* @var int
* @var float
*/
private $_batteryVoltage = null;
 
126,7 → 126,7
/**
* current charge in percent of the battery
*
* @var int
* @var float
*/
private $_batterCharge = null;
 
149,7 → 149,7
*
* @see UPSDevice::$_batterCharge
*
* @return integer
* @return float
*/
public function getBatterCharge()
{
159,7 → 159,7
/**
* Sets $_batterCharge.
*
* @param int $batterCharge battery charge
* @param float $batterCharge battery charge
*
* @see UPSDevice::$_batterCharge
*
201,7 → 201,7
*
* @see UPSDevice::$_batteryVoltage
*
* @return int
* @return float
*/
public function getBatteryVoltage()
{
211,7 → 211,7
/**
* Sets $_batteryVoltage.
*
* @param int $batteryVoltage battery volt
* @param float $batteryVoltage battery volt
*
* @see UPSDevice::$_batteryVoltage
*
279,7 → 279,7
*
* @see UPSDevice::$_lineVoltage
*
* @return int
* @return float
*/
public function getLineVoltage()
{
289,7 → 289,7
/**
* Sets $_lineVoltage.
*
* @param int $lineVoltage line voltage
* @param float $lineVoltage line voltage
*
* @see UPSDevice::$_lineVoltage
*
331,7 → 331,7
*
* @see UPSDevice::$_load
*
* @return int
* @return float
*/
public function getLoad()
{
341,7 → 341,7
/**
* Sets $_load.
*
* @param int $load current load
* @param float $load current load
*
* @see UPSDevice::$_load
*
513,7 → 513,7
*
* @see UPSDevice::$_temperatur
*
* @return int
* @return string
*/
public function getTemperatur()
{
523,7 → 523,7
/**
* Sets $_temperatur.
*
* @param int $temperatur temperature
* @param string $temperatur temperature
*
* @see UPSDevice::$_temperatur
*