Files
aastra-xml-php/php_classes/AastraIPPhoneIconEntry.class.php
2018-02-15 22:59:05 +01:00

29 lines
630 B
PHP

<?php
################################################################################
# Aastra XML API Classes - AastraIPIconEntry
# Copyright Aastra Telecom 2007
#
# 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);
}
}
?>