diff options
author | xue <> | 2007-05-14 11:40:22 +0000 |
---|---|---|
committer | xue <> | 2007-05-14 11:40:22 +0000 |
commit | 82621f4f0a7e47314222fa3b21a0745425e1248b (patch) | |
tree | 9569f0c1aa7f6a4d52743c4f568bc5c2665d5067 /framework/Xml/TFeedDocument.php | |
parent | 7429863609d6c5708b4414d3619bdf152de2ea16 (diff) |
moving unfinished files to dev branch.
Diffstat (limited to 'framework/Xml/TFeedDocument.php')
-rw-r--r-- | framework/Xml/TFeedDocument.php | 93 |
1 files changed, 0 insertions, 93 deletions
diff --git a/framework/Xml/TFeedDocument.php b/framework/Xml/TFeedDocument.php deleted file mode 100644 index 28f917cb..00000000 --- a/framework/Xml/TFeedDocument.php +++ /dev/null @@ -1,93 +0,0 @@ -<?php -/** - * TFeedDocument class file - * - * @author Knut Urdalen <knut.urdalen@gmail.com> - * @link http://www.pradosoft.com - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ - * @package System.Xml - */ - -Prado::using('System.Web.Services.IFeedContentProvider'); - -/** - * TFeedDocument class - * - * TFeedDocument represents a Web feed used for Web syndication. - * - * @author Knut Urdalen <knut.urdalen@gmail.com> - * @package System.Xml - * @since 3.1 - */ -abstract class TFeedDocument extends DOMDocument implements IFeedContentProvider { - - /** - * - */ - public function __construct($encoding = null) { - parent::__construct('1.0', $encoding); - } - - /** - * - */ - public function getEncoding() { - return $this->encoding; - } - - /** - * - */ - public function setEncoding($encoding) { - $this->encoding = $encoding; - } -} - -/** - * TFeedElement class - * - * @author Knut Urdalen <knut.urdalen@gmail.com> - * @package System.Xml - * @since 3.1 - */ -abstract class TFeedElement extends TXmlElement { - - /** - * - */ - /* public function getValue($name) { - $element = $this->getElementByTagName($name); - if($element instanceof TXmlElement) { - return $element->getValue(); - } - throw new Exception("Element '$name' not found"); - }*/ - - /** - * - */ - /*public function setValue($name, $value) { - - if(($element = $this->getElementByTagName($name)) !== null) { - $element->setValue($value); - } else { - $element = new TXmlElement($name); - $element->setValue($value); - $this->getElements()->add($element); - } - }*/ -} - -/** - * TFeedItem class - * - * @author Knut Urdalen <knut.urdalen@gmail.com> - * @package System.Xml - * @since 3.1 - */ -abstract class TFeedItem extends TFeedElement { - -} - -?>
\ No newline at end of file |