Inheritances
Files
Overview
FRAMES
NO FRAMES

Class Zend_Feed_Entry_Rss

Zend_Feed
|- class Zend_Feed_Entry_Rss extends Zend_Feed_Entry_Abstract
Defined in line 38 of file Feed/Entry/Rss.php.
Concrete class for working with RSS items.
CategoryZend
PackageZend_Feed
CopyrightCopyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
Licensehttp://framework.zend.com/license/new-bsd New BSD License

Summary

Instance fields
# $_rootElement Root XML element for RSS items
Instance methods
+ __call() Overwrites parent::_call method to enable read access
+ __get() Overwrites parent::_get method to enable read access
+ __isset() Overwrites parent::_isset method to enable access
+ __set() Overwrites parent::_set method to enable write access

Details

Instance fields

$_rootElement
protected $_rootElement = 'item'
Root XML element for RSS items.
Var string

Instance methods

__call()
public function __call( $var
$unused
)
Overwrites parent::_call method to enable read access
to content:encoded element.
Please note that method-style write access is not currently supported
by parent method, consequently this method doesn't as well.
Parameters
string $var The element to get the string value of.
mixed $unused This parameter is not used.
Returns mixed The node's value, null, or an array of nodes.
__get()
public function __get( $var)
Overwrites parent::_get method to enable read access
to content:encoded element.
Parameters
string $var The property to access.
Returns mixed
__isset()
public function __isset( $var)
Overwrites parent::_isset method to enable access
to content:encoded element.
Parameters
string $var
Returns boolean
__set()
public function __set( $var
$value
)
Overwrites parent::_set method to enable write access
to content:encoded element.
Parameters
string $var The property to change.
$value
Returns void