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

29 lines
742 B
PHP

<?php
################################################################################
# Aastra XML API Classes - AastraIPPhoneTextScreenEntry
# Copyright Mitel Networks 2005-2015
#
# Internal class for AastraIPPhoneTextScreen object.
################################################################################
class AastraIPPhoneTextScreenEntry extends AastraIPPhone {
var $_text;
var $_color='';
function AastraIPPhoneTextScreenEntry($text,$color)
{
$this->_text = $text;
$this->_color = $color;
}
function render()
{
$text = $this->escape($this->_text);
$xml = "<Text";
if ($this->_color!='') $xml .= " Color=\"{$this->_color}\"";
$xml .= ">{$text}</Text>\n";
return($xml);
}
}
?>