29 lines
664 B
PHP
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);
|
|
}
|
|
}
|
|
?>
|