D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
lampp
/
lib
/
php
/
XML
/
SVG
/
Filename :
Title.php
back
Copy
<?php /** * Package for building SVG graphics. * * Copyright 2002-2007 The Horde Project (http://www.horde.org/) * * @author Chuck Hagenbuch <chuck@horde.org> * @package XML_SVG * @license http://www.fsf.org/copyleft/lgpl.html */ require_once 'XML/SVG/Element.php'; /** * XML_SVG_Title * * @package XML_SVG */ class XML_SVG_Title extends XML_SVG_Element { var $_title; function printElement() { echo '<title'; $this->printParams('id', 'style'); print(">\n"); print($this->_title); parent::printElement(); print("</title>\n"); } }