PHP Class Horde_Feed_Rss, horde

The Horde_Feed_Rss class is a concrete subclass of Horde_Feed_Base meant for representing RSS channels. It does not add any methods to its parent, just provides a classname to check against with the instanceof operator, and expects to be handling RSS-formatted data instead of Atom.
Inheritance: extends Horde_Feed_Base
Datei anzeigen Open project: horde/horde

Protected Properties

Property Type Description
$_defaultNamespace string The default namespace for RSS channels.
$_emptyXml string The XML string for an "empty" RSS feed.
$_listItemClassName string The classname for individual channel elements.

Protected Methods

Method Description
_buildListItemCache ( ) : array Cache the individual feed elements so they don't need to be searched for on every operation.

Method Details

_buildListItemCache() protected method

Cache the individual feed elements so they don't need to be searched for on every operation.
protected _buildListItemCache ( ) : array
return array

Property Details

$_defaultNamespace protected_oe property

The default namespace for RSS channels.
protected string $_defaultNamespace
return string

$_emptyXml protected_oe property

The XML string for an "empty" RSS feed.
protected string $_emptyXml
return string

$_listItemClassName protected_oe property

The classname for individual channel elements.
protected string $_listItemClassName
return string