aastra-xml-php/php_classes/AastraIPPhoneSoftkeyEntry.class.php
2018-02-15 23:20:25 +01:00

41 lines
1.0 KiB
PHP

<?php
################################################################################
# Aastra XML API Classes - AastraIPPhoneSoftkeyEntry
# Firmware 2.0 or better
# Copyright Mitel Networks 2005-2015
#
# Internal class for AastraIPPhone object.
################################################################################
class AastraIPPhoneSoftkeyEntry {
var $_index;
var $_label;
var $_uri;
var $_icon;
var $_color;
function AastraIPPhoneSoftkeyEntry($index, $label, $uri, $icon, $color)
{
$this->_index = $index;
$this->_label = $label;
$this->_uri = $uri;
$this->_icon = $icon;
$this->_color = $color;
}
function render()
{
$index=$this->_index;
$xml = "<SoftKey index=\"".$index."\"";
if($this->_icon!=NULL) $xml.= " icon=\"".$this->_icon."\"";
$xml .= ">\n";
$xml .= "<Label";
if($this->_color!='') $xml.= " Color=\"".$this->_color."\"";
$xml .=">".$this->_label."</Label>\n";
$xml .= "<URI>".$this->_uri."</URI>\n";
$xml .= "</SoftKey>\n";
return($xml);
}
}
?>