Zend Framework  1.12
Public Member Functions | Protected Attributes | List of all members
Zend_Feed_Entry_Rss Class Reference

Public Member Functions

 __get ($var)
 Overwrites parent::_get method to enable read access to content:encoded element.
 
 __set ($var, $value)
 Overwrites parent::_set method to enable write access to content:encoded element.
 
 __isset ($var)
 Overwrites parent::_isset method to enable access to content:encoded element.
 
 __call ($var, $unused)
 Overwrites parent::_call method to enable read access to content:encoded element.
 
- Public Member Functions inherited from Zend_Feed_Entry_Abstract
 __construct ($uri=null, $element=null)
 Zend_Feed_Entry_Abstract constructor.
 
- Public Member Functions inherited from Zend_Feed_Element
 __construct ($element=null)
 Zend_Feed_Element constructor.
 
 getDOM ()
 Get a DOM representation of the element.
 
 setDOM (DOMElement $element)
 Update the object from a DOM element.
 
 setParent (Zend_Feed_Element $element)
 Set the parent element of this object to another Zend_Feed_Element.
 
 saveXml ()
 Get an XML string representation of this element.
 
 saveXmlFragment ()
 Get the XML for only this element.
 
 getEncoding ()
 Get encoding.
 
 setEncoding ($value)
 Set encoding.
 
 __get ($var)
 Map variable access onto the underlying entry representation.
 
 __set ($var, $val)
 Map variable sets onto the underlying entry representation.
 
 __isset ($var)
 Map isset calls onto the underlying entry representation.
 
 __call ($var, $unused)
 Get the value of an element with method syntax.
 
 __unset ($var)
 Remove all children matching $var.
 
 __toString ()
 Returns the nodeValue of this element when this object is used in a string context.
 
 offsetExists ($offset)
 Required by the ArrayAccess interface.
 
 offsetGet ($offset)
 Required by the ArrayAccess interface.
 
 offsetSet ($offset, $value)
 Required by the ArrayAccess interface.
 
 offsetUnset ($offset)
 Required by the ArrayAccess interface.
 

Protected Attributes

 $_rootElement = 'item'
 
- Protected Attributes inherited from Zend_Feed_Entry_Abstract
 $_rootElement
 
 $_rootNamespace = null
 
- Protected Attributes inherited from Zend_Feed_Element
 $_element
 
 $_encoding = 'UTF-8'
 
 $_parentElement
 
 $_appended = true
 

Additional Inherited Members

- Protected Member Functions inherited from Zend_Feed_Element
 ensureAppended ()
 Appends this element to its parent if necessary.
 
 _children ($var)
 Finds children with tagnames matching $var.
 

Member Function Documentation

__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$varThe element to get the string value of.
mixed$unusedThis parameter is not used.
Returns
mixed The node's value, null, or an array of nodes.
__get (   $var)

Overwrites parent::_get method to enable read access to content:encoded element.

Parameters
string$varThe property to access.
Returns
mixed
__isset (   $var)

Overwrites parent::_isset method to enable access to content:encoded element.

Parameters
string$var
Returns
boolean
__set (   $var,
  $value 
)

Overwrites parent::_set method to enable write access to content:encoded element.

Parameters
string$varThe property to change.
string$valThe property's new value.
Returns
void

Member Data Documentation

$_rootElement = 'item'
protected