Feed/Element.php

Show: PublicProtectedPrivateinherited
Table of Contents
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 license@zend.com so we can send you a copy immediately.
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_Feed  
Version
$Id$  

\Zend_Feed_Element

Package: Zend_Feed
Wraps a DOMElement allowing for SimpleXML-like access to attributes.
Implements
Children
\Zend_Feed_Entry_Abstract
\Zend_Feed_Abstract
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  

Properties

>VPropertyprotectedboolean $_appended = true
Default valuetrueDetails
Type
boolean
>VPropertyprotected\DOMElement $_element
Details
Type
\DOMElement
>VPropertyprotectedstring $_encoding = 'UTF-8'

Character encoding to utilize

Default value'UTF-8'Details
Type
string
>VPropertyprotected\Zend_Feed_Element $_parentElement

Methods

methodpublic__call(string $var, mixed $unused) : mixed

Get the value of an element with method syntax.

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.
Parameters
NameTypeDescription
$varstring

The element to get the string value of.

$unusedmixed

This parameter is not used.

Returns
TypeDescription
mixedThe node's value, null, or an array of nodes.
methodpublic__construct(\DOMElement $element = null) : void

Zend_Feed_Element constructor.

Parameters
NameTypeDescription
$element\DOMElement

The DOM element we're encapsulating.

methodpublic__get(string $var) : mixed

Map variable access onto the underlying entry representation.

Get-style access returns a Zend_Feed_Element representing the child element accessed. To get string values, use method syntax with the __call() overriding.
Parameters
NameTypeDescription
$varstring

The property to access.

Returns
TypeDescription
mixed
methodpublic__isset(string $var) : boolean

Map isset calls onto the underlying entry representation.

Parameters
NameTypeDescription
$varstring
Returns
TypeDescription
boolean
methodpublic__set(string $var, string $val) : void

Map variable sets onto the underlying entry representation.

Parameters
NameTypeDescription
$varstring

The property to change.

$valstring

The property's new value.

Throws
ExceptionDescription
\Zend_Feed_Exception
methodpublic__toString() : string

Returns the nodeValue of this element when this object is used in a string context.

Returns
TypeDescription
string
methodpublic__unset(string $var) : void

Remove all children matching $var.

Parameters
NameTypeDescription
$varstring
methodprotected_children(string $var) : array

Finds children with tagnames matching $var

Similar to SimpleXML's children() method.
Parameters
NameTypeDescription
$varstring

Tagname to match, can be either namespace:tagName or just tagName.

Returns
TypeDescription
array
methodprotectedensureAppended() : void

Appends this element to its parent if necessary.

methodpublicgetDOM() : \DOMDocument

Get a DOM representation of the element

Returns the underlying DOM object, which can then be manipulated with full DOM methods.
Returns
TypeDescription
\DOMDocument
methodpublicgetEncoding() : string

Get encoding

Returns
TypeDescription
string
methodpublicoffsetExists(string $offset) : boolean

Required by the ArrayAccess interface.

Parameters
NameTypeDescription
$offsetstring
Returns
TypeDescription
boolean
methodpublicoffsetGet(string $offset) : string

Required by the ArrayAccess interface.

Parameters
NameTypeDescription
$offsetstring
Returns
TypeDescription
string
methodpublicoffsetSet(string $offset, string $value) : string

Required by the ArrayAccess interface.

Parameters
NameTypeDescription
$offsetstring
$valuestring
Returns
TypeDescription
string
methodpublicoffsetUnset(string $offset) : boolean

Required by the ArrayAccess interface.

Parameters
NameTypeDescription
$offsetstring
Returns
TypeDescription
boolean
methodpublicsaveXml() : string

Get an XML string representation of this element

Returns a string of this element's XML, including the XML prologue.
Returns
TypeDescription
string
methodpublicsaveXmlFragment() : string

Get the XML for only this element

Returns a string of this element's XML without prologue.
Returns
TypeDescription
string
methodpublicsetDOM(\DOMElement $element) : void

Update the object from a DOM element

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.
Parameters
NameTypeDescription
$element\DOMElement
methodpublicsetEncoding(string $value) : \Zend_Feed_Element

Set encoding

Parameters
NameTypeDescription
$valuestring

Encoding to use

Returns
TypeDescription
\Zend_Feed_Element
methodpublicsetParent(\Zend_Feed_Element $element) : void

Set the parent element of this object to another Zend_Feed_Element.

Parameters
NameTypeDescription
$element\Zend_Feed_Element
Documentation was generated by phpDocumentor 2.2.0 .