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

29 lines
664 B
PHP

<?php
################################################################################
# Aastra XML API Classes - AastraIPPhoneIconEntry
# Firmware 2.0 or better
# Copyright Mitel Networks 2005-2015
#
# Internal class for AastraIPPhone object.
################################################################################
class AastraIPPhoneIconEntry {
var $_index;
var $_icon;
function AastraIPPhoneIconEntry($index, $icon)
{
$this->_index=$index;
$this->_icon=$icon;
}
function render()
{
$index = $this->_index;
$icon = $this->_icon;
$xml = "<Icon index=\"{$index}\">{$icon}</Icon>\n";
return($xml);
}
}
?>