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

29 lines
671 B
PHP

<?php
################################################################################
# Aastra XML API Classes - AastraIPPhoneImageMenuEntry
# Copyright Aastra Telecom 2007
#
# Internal class for AastraIPPhoneImageMenu object.
################################################################################
class AastraIPPhoneImageMenuEntry extends AastraIPPhone {
var $_key;
var $_uri;
function AastraIPPhoneImageMenuEntry($key, $uri)
{
$this->_key=$key;
$this->_uri=$uri;
}
function render()
{
$key = $this->_key;
$uri = $this->escape($this->_uri);
$xml = "<URI key=\"{$key}\">{$uri}</URI>\n";
return($xml);
}
}
?>