blob: 28f917cbe60d7199d09addbfecf3b742cb43990a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<?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 {
}
?>
|