PHP Class Horde_Feed_Atom, horde

The Horde_Feed_Atom class is a concrete subclass of the general Horde_Feed_Base class, tailored for representing an Atom feed. It shares all of the same methods with its parent. The distinction is made in the format of data that Horde_Feed_Atom expects, and as a further pointer for users as to what kind of feed object they have been passed.
Inheritance: extends Horde_Feed_Base
Datei anzeigen Open project: horde/horde

Protected Properties

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

Public Methods

Method Description
link ( string $rel = null ) : mixed Easy access to tags keyed by "rel" attributes.

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 Atom feeds.
protected string $_defaultNamespace
return string

$_emptyXml protected_oe property

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

$_listItemClassName protected_oe property

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