Feed/Abstract.php
Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to [email protected] so we can send you a copy immediately.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_Feed
- Version
- $Id: Abstract.php 25160 2012-12-18 15:17:16Z matthew $
\Zend_Feed_Abstract
The Zend_Feed_Abstract class is an abstract class representing feeds.
Zend_Feed_Abstract implements two core PHP 5 interfaces: ArrayAccess and Iterator. In both cases the collection being treated as an array is considered to be the entry collection, such that iterating over the feed takes you through each of the feed.s entries.
- Implements
- Parent(s)
- \Zend_Feed_Element
- Children
- \Zend_Feed_Rss
- \Zend_Feed_Atom
- Category
- Zend
- Copyright
- Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
Properties

boolean $_appended = truetrueDetails- Type
- boolean
- Inherited_from
- \Zend_Feed_Element::$$_appended

\DOMElement $_element = - Type
- \DOMElement
- Inherited_from
- \Zend_Feed_Element::$$_element

string $_encoding = 'UTF-8''UTF-8'Details- Type
- string
- Inherited_from
- \Zend_Feed_Element::$$_encoding

integer $_entryIndex = 0Current index on the collection of feed entries for the Iterator implementation.
0Details- Type
- integer

\Zend_Feed_Element $_parentElement = - Type
- \Zend_Feed_Element
- Inherited_from
- \Zend_Feed_Element::$$_parentElement
Methods

__call(string $var, mixed $unused) : mixedGet the value of an element with method syntax.
Inherited from: \Zend_Feed_Element::__call()Map method calls to get the string value of the requested element. If there are multiple elements that match, this will return an array of those objects.
| Name | Type | Description |
|---|---|---|
| $var | string | The element to get the string value of. |
| $unused | mixed | This parameter is not used. |
| Type | Description |
|---|---|
| mixed | The node's value, null, or an array of nodes. |

__construct(string $uri = null, string $string = null, \Zend_Feed_Builder_Interface $builder = null) : voidFeed constructor
The Zend_Feed_Abstract constructor takes the URI of a feed or a feed represented as a string and loads it as XML.
| Name | Type | Description |
|---|---|---|
| $uri | string | The full URI of the feed to load, or NULL if not retrieved via HTTP or as an array. |
| $string | string | The feed as a string, or NULL if retrieved via HTTP or as an array. |
| $builder | \Zend_Feed_Builder_Interface | The feed as a builder instance or NULL if retrieved as a string or via HTTP. |
| Exception | Description |
|---|---|
| \Zend_Feed_Exception | If loading the feed failed. |

__get(string $var) : mixedMap variable access onto the underlying entry representation.
Inherited from: \Zend_Feed_Element::__get()Get-style access returns a Zend_Feed_Element representing the child element accessed. To get string values, use method syntax with the __call() overriding.
| Name | Type | Description |
|---|---|---|
| $var | string | The property to access. |
| Type | Description |
|---|---|
| mixed |

__isset(string $var) : booleanMap isset calls onto the underlying entry representation.
Inherited from: \Zend_Feed_Element::__isset()| Name | Type | Description |
|---|---|---|
| $var | string |
| Type | Description |
|---|---|
| boolean |

__set(string $var, string $val) : voidMap variable sets onto the underlying entry representation.
Inherited from: \Zend_Feed_Element::__set()| Name | Type | Description |
|---|---|---|
| $var | string | The property to change. |
| $val | string | The property's new value. |
| Exception | Description |
|---|---|
| \Zend_Feed_Exception |

__toString() : stringReturns the nodeValue of this element when this object is used in a string context.
Inherited from: \Zend_Feed_Element::__toString()| Type | Description |
|---|---|
| string |

__wakeup() : voidLoad the feed as an XML DOMDocument object
| Exception | Description |
|---|---|
| \Zend_Feed_Exception |

_buildEntryCache() : voidCache the individual feed elements so they don't need to be searched for on every operation.

_children(string $var) : array
Similar to SimpleXML's children() method.
| Name | Type | Description |
|---|---|---|
| $var | string | Tagname to match, can be either namespace:tagName or just tagName. |
| Type | Description |
|---|---|
| array |

_importFeedFromString(string $feed) : stringImport a feed from a string
Protects against XXE attack vectors.
| Name | Type | Description |
|---|---|---|
| $feed | string |
| Type | Description |
|---|---|
| string |
| Exception | Description |
|---|---|
| \Zend_Feed_Exception | on detection of an XXE vector |

_mapFeedEntries(\DOMElement $root, array $array) : \DOMElementGenerate the entries of the feed when working in write mode
| Name | Type | Description |
|---|---|---|
| $root | \DOMElement | the root node to use |
| $array | array | the data to use |
| Type | Description |
|---|---|
| \DOMElement | root node |

_mapFeedHeaders(array $array) : \DOMElementGenerate the header of the feed when working in write mode
| Name | Type | Description |
|---|---|---|
| $array | array | the data to use |
| Type | Description |
|---|---|
| \DOMElement | root node |

count() : integerGet the number of entries in this feed object.
| Type | Description |
|---|---|
| integer | Entry count. |

current() : mixedRequired by the Iterator interface.
| Type | Description |
|---|---|
| mixed | The current row, or null if no rows. |

ensureAppended() : voidAppends this element to its parent if necessary.
Inherited from: \Zend_Feed_Element::ensureAppended()
getDOM() : \DOMDocument
Returns the underlying DOM object, which can then be manipulated with full DOM methods.
| Type | Description |
|---|---|
| \DOMDocument |

key() : mixedRequired by the Iterator interface.
| Type | Description |
|---|---|
| mixed | The current row number (starts at 0), or NULL if no rows |

next() : mixedRequired by the Iterator interface.
| Type | Description |
|---|---|
| mixed | The next row, or null if no more rows. |

offsetExists(string $offset) : boolean
| Name | Type | Description |
|---|---|---|
| $offset | string |
| Type | Description |
|---|---|
| boolean |

offsetGet(string $offset) : string
| Name | Type | Description |
|---|---|---|
| $offset | string |
| Type | Description |
|---|---|
| string |

offsetSet(string $offset, string $value) : string
| Name | Type | Description |
|---|---|---|
| $offset | string | |
| $value | string |
| Type | Description |
|---|---|
| string |

offsetUnset(string $offset) : boolean
| Name | Type | Description |
|---|---|---|
| $offset | string |
| Type | Description |
|---|---|
| boolean |

saveXml() : stringGet an XML string representation of this element
Inherited from: \Zend_Feed_Element::saveXml()Returns a string of this element's XML, including the XML prologue.
| Type | Description |
|---|---|
| string |

saveXmlFragment() : string
Returns a string of this element's XML without prologue.
| Type | Description |
|---|---|
| string |

send() : voidSend feed to a http client with the correct header
| Exception | Description |
|---|---|
| \Zend_Feed_Exception | if headers have already been sent |

setDOM(\DOMElement $element) : void
Take a DOMElement object, which may be originally from a call to getDOM() or may be custom created, and use it as the DOM tree for this Zend_Feed_Element.
| Name | Type | Description |
|---|---|---|
| $element | \DOMElement |

setEncoding(string $value) : \Zend_Feed_Element
| Name | Type | Description |
|---|---|---|
| $value | string | Encoding to use |
| Type | Description |
|---|---|
| \Zend_Feed_Element |

setParent(\Zend_Feed_Element $element) : voidSet the parent element of this object to another Zend_Feed_Element.
Inherited from: \Zend_Feed_Element::setParent()| Name | Type | Description |
|---|---|---|
| $element | \Zend_Feed_Element |