Revize 7dafd607
Přidáno uživatelem Michal Kliment před více než 9 roky(ů)
application/models/iface.php | ||
---|---|---|
* @param integer $type
|
||
* @return string
|
||
*/
|
||
public function get_type($type = NULL)
|
||
public static function get_type($type)
|
||
{
|
||
if (empty($type) && isset($this) && $this->id)
|
||
{
|
||
$type = $this->type;
|
||
}
|
||
|
||
if (is_numeric($type) && array_key_exists($type, self::$types))
|
||
{
|
||
return __(self::$types[$type]);
|
||
... | ... | |
* @param integer $type
|
||
* @return string
|
||
*/
|
||
public function get_default_name($type = NULL)
|
||
public static function get_default_name($type)
|
||
{
|
||
if (empty($type) && isset($this) && $this->id)
|
||
{
|
||
$type = $this->type;
|
||
}
|
||
|
||
if (!empty($type) && array_key_exists($type, self::$default_names))
|
||
{
|
||
return self::$default_names[$type];
|
||
... | ... | |
* @author Michal Kliment
|
||
* @return array
|
||
*/
|
||
public function get_default_names()
|
||
public static function get_default_names()
|
||
{
|
||
return self::$default_names;
|
||
}
|
||
... | ... | |
* @param integer $mode
|
||
* @return string
|
||
*/
|
||
public function get_wireless_mode($mode = NULL)
|
||
public static function get_wireless_mode($mode = NULL)
|
||
{
|
||
if (!$mode && isset($this) && get_class($this) == __CLASS__ && $this->id)
|
||
{
|
||
$mode = $this->wireless_mode;
|
||
}
|
||
|
||
if (array_key_exists($mode, self::$wireless_modes))
|
||
{
|
||
return __(self::$wireless_modes[$mode]);
|
||
... | ... | |
* Returns antenna of current wireless interface
|
||
*
|
||
* @author Michal Kliment
|
||
* @param integer $mode
|
||
* @param integer $antenna
|
||
* @return string
|
||
*/
|
||
public function get_wireless_antenna($antenna = NULL)
|
||
public static function get_wireless_antenna($antenna)
|
||
{
|
||
if ($antenna === NULL)
|
||
{
|
||
$antenna = $this->wireless_antenna;
|
||
}
|
||
|
||
if (array_key_exists($antenna, self::$wireless_antennas))
|
||
{
|
||
return __(self::$wireless_antennas[$antenna]);
|
Také k dispozici: Unified diff
Release 1.1.12