API Joomla 1.5.26
Documentation des API du CMS Joomla en version 1.5
|
DOMIT_Node::_constructor | ( | ) |
DOMIT_Node constructor, assigns a uid
Référencé par DOMIT_Attr::DOMIT_Attr(), DOMIT_CDATASection::DOMIT_CDATASection(), DOMIT_Comment::DOMIT_Comment(), DOMIT_Document::DOMIT_Document(), DOMIT_DocumentFragment::DOMIT_DocumentFragment(), DOMIT_DocumentType::DOMIT_DocumentType(), DOMIT_Element::DOMIT_Element(), DOMIT_ProcessingInstruction::DOMIT_ProcessingInstruction(), et DOMIT_TextNode::DOMIT_TextNode().
& DOMIT_Node::appendChild | ( | &$ | child | ) |
Appends a node to the childNodes list of the current node
Object | The node to be appended |
Réimplémentée dans DOMIT_ChildNodes_Interface, et DOMIT_Document.
Références DOMIT_DOMException::raiseException().
DOMIT_Node::clearReferences | ( | ) |
Clears previousSibling, nextSibling, and parentNode references from a node that has been removed
& DOMIT_Node::cloneNode | ( | $ | deep = false | ) |
Copies a node and/or its children
boolean | True if all child nodes are also to be cloned |
Réimplémentée dans DOMIT_Document, DOMIT_Element, DOMIT_TextNode, DOMIT_Attr, DOMIT_DocumentFragment, DOMIT_Comment, DOMIT_ProcessingInstruction, et DOMIT_DocumentType.
Références DOMIT_DOMException::raiseException().
DOMIT_Node::delete | ( | ) |
Removes the node from the document
DOMIT_Node::DOMIT_Node | ( | ) |
Raises error if abstract class is directly instantiated
Références DOMIT_DOMException::raiseException().
DOMIT_Node::forHTML | ( | $ | str, |
$ | doPrint = false |
||
) |
Formats a string for presentation as HTML
string | The string to be formatted |
boolean | True if the string is to be sent directly to output |
Référencé par toNormalizedString(), DOMIT_DocumentType::toString(), DOMIT_ProcessingInstruction::toString(), DOMIT_Comment::toString(), DOMIT_DocumentFragment::toString(), DOMIT_Attr::toString(), DOMIT_CDATASection::toString(), DOMIT_TextNode::toString(), DOMIT_Element::toString(), et DOMIT_Document::toString().
DOMIT_Node::getChildNodeIndex | ( | &$ | arr, |
&$ | child | ||
) |
Returns the index of the specified node in a childNodes list
Array | The childNodes array to be searched |
Object | The node targeted by the search |
Référencé par DOMIT_ChildNodes_Interface::appendChild(), DOMIT_ChildNodes_Interface::insertBefore(), DOMIT_ChildNodes_Interface::removeChild(), et DOMIT_ChildNodes_Interface::replaceChild().
& DOMIT_Node::getElementsByAttributePath | ( | $ | pattern, |
$ | nodeIndex = 0 |
||
) |
Retrieves an element or DOMIT_NodeList of elements corresponding to an Xpath-like attribute expression (NOT YET IMPLEMENTED!)
string | The query pattern |
int | If a single node is to be returned (rather than the entire NodeList) the index of that node |
Réimplémentée dans DOMIT_Document, et DOMIT_Element.
Références DOMIT_DOMException::raiseException().
& DOMIT_Node::getElementsByPath | ( | $ | pattern, |
$ | nodeIndex = 0 |
||
) |
Retrieves an element or DOMIT_NodeList of elements corresponding to an Xpath-like expression.
string | The query pattern |
int | If a single node is to be returned (rather than the entire NodeList) the index of that node |
Réimplémentée dans DOMIT_Document, et DOMIT_Element.
Références DOMIT_DOMException::raiseException().
DOMIT_Node::getNamedElements | ( | &$ | nodeList, |
$ | tagName | ||
) |
Adds elements with the specified tag name to a NodeList collection
Object | The NodeList collection |
string | The tag name of matching elements |
Réimplémentée dans DOMIT_Element.
DOMIT_Node::getText | ( | ) |
Returns the concatented text of the current node and its children
Réimplémentée dans DOMIT_Document, DOMIT_Element, DOMIT_TextNode, DOMIT_Attr, DOMIT_Comment, DOMIT_ProcessingInstruction, et DOMIT_DocumentType.
DOMIT_Node::getTypedNodes | ( | &$ | nodeList, |
$ | type | ||
) |
Adds all child nodes of the specified nodeType to the NodeList
Object | The NodeList collection |
string | The nodeType of matching nodes |
Réimplémentée dans DOMIT_Element.
Références DOMIT_DOMException::raiseException().
DOMIT_Node::getValuedNodes | ( | &$ | nodeList, |
$ | value | ||
) |
Adds all child nodes of the specified nodeValue to the NodeList
Object | The NodeList collection |
string | The nodeValue of matching nodes |
Réimplémentée dans DOMIT_Element.
Références DOMIT_DOMException::raiseException().
DOMIT_Node::hasAttributes | ( | ) |
Determines whether a node has any attributes
Réimplémentée dans DOMIT_Element.
DOMIT_Node::hasChildNodes | ( | ) |
Determines whether a node has any children
Référencé par DOMIT_ChildNodes_Interface::appendChild(), DOMIT_Element::normalize(), DOMIT_ChildNodes_Interface::removeChild(), et DOMIT_ChildNodes_Interface::replaceChild().
& DOMIT_Node::insertBefore | ( | &$ | newChild, |
&$ | refChild | ||
) |
Inserts a node to the childNodes list of the current node
Object | The node to be inserted |
Object | The node before which the insertion is to occur |
Réimplémentée dans DOMIT_ChildNodes_Interface, et DOMIT_Document.
Références DOMIT_DOMException::raiseException().
DOMIT_Node::isSupported | ( | $ | feature, |
$ | version = null |
||
) |
Indicates whether the specified feature is supported by the DOM implementation and this node
string | The feature |
string | The version of the DOM implementation |
Références $version.
DOMIT_Node::normalize | ( | ) |
Collapses adjacent text nodes in entire node subtree
Réimplémentée dans DOMIT_Element.
& DOMIT_Node::nvl | ( | &$ | value, |
$ | default | ||
) |
Tests whether a value is null, and if so, returns a default value
mixed | The value to be tested |
mixed | The default value |
DOMIT_Node::onLoad | ( | ) |
A node event that can be set to fire upon document loading, used for node initialization
& DOMIT_Node::removeChild | ( | &$ | oldChild | ) |
Removes a node from the childNodes list of the current node
Object | The node to be removed |
Réimplémentée dans DOMIT_ChildNodes_Interface, et DOMIT_Document.
Références DOMIT_DOMException::raiseException().
& DOMIT_Node::replaceChild | ( | &$ | newChild, |
&$ | oldChild | ||
) |
Replaces a node with another
Object | The new node |
Object | The old node |
Réimplémentée dans DOMIT_ChildNodes_Interface, et DOMIT_Document.
Références DOMIT_DOMException::raiseException().
DOMIT_Node::setOwnerDocument | ( | &$ | rootNode | ) |
Sets the ownerDocument property of a node to the containing DOMIT_Document
Object | A reference to the document element of the DOMIT_Document |
DOMIT_Node::toArray | ( | ) |
Generates an array representation of the node and its children
Réimplémentée dans DOMIT_Document, DOMIT_Element, DOMIT_TextNode, DOMIT_DocumentFragment, DOMIT_Comment, DOMIT_ProcessingInstruction, et DOMIT_DocumentType.
Références DOMIT_DOMException::raiseException().
DOMIT_Node::toNormalizedString | ( | $ | htmlSafe = false , |
$ | subEntities = false |
||
) |
Generates a normalized (formatted for readability) representation of the node and its children
boolean | True if HTML readable output is desired |
boolean | True if illegal xml characters in text nodes and attributes should be converted to entities |
Références forHTML().
Référencé par DOMIT_Document::saveXML().
DOMIT_Node::$attributes = null |
DOMIT_Node::$childCount = 0 |
DOMIT_Node::$childNodes = null |
DOMIT_Node::$firstChild = null |
DOMIT_Node::$lastChild = null |
DOMIT_Node::$localName = null |
Référencé par DOMIT_Element::getAttributeNodeNS(), DOMIT_Element::getAttributeNS(), DOMIT_Element::getElementsByTagNameNS(), DOMIT_Document::getElementsByTagNameNS(), DOMIT_Element::getNamedElementsNS(), DOMIT_Element::hasAttributeNS(), DOMIT_Element::removeAttributeNS(), et DOMIT_Element::setAttributeNS().
DOMIT_Node::$namespaceURI = null |
Référencé par DOMIT_Document::createAttributeNS(), DOMIT_Document::createElementNS(), DOMIT_Element::getAttributeNodeNS(), DOMIT_Element::getAttributeNS(), DOMIT_Element::getElementsByTagNameNS(), DOMIT_Document::getElementsByTagNameNS(), DOMIT_Element::getNamedElementsNS(), DOMIT_Element::hasAttributeNS(), DOMIT_Element::removeAttributeNS(), et DOMIT_Element::setAttributeNS().
DOMIT_Node::$nextSibling = null |
DOMIT_Node::$nodeName = null |
DOMIT_Node::$nodeType = null |
DOMIT_Node::$nodeValue = null |
Référencé par DOMIT_Comment::DOMIT_Comment().
DOMIT_Node::$ownerDocument = null |
DOMIT_Node::$parentNode = null |
Référencé par DOMIT_Document::importNode().
DOMIT_Node::$prefix = null |
DOMIT_Node::$previousSibling = null |
DOMIT_Node::$uid |