MediaWiki master
|
There are three types of nodes: More...
Inherited by MediaWiki\Parser\PPNode_Hash_Array, MediaWiki\Parser\PPNode_Hash_Attr, MediaWiki\Parser\PPNode_Hash_Text, and MediaWiki\Parser\PPNode_Hash_Tree.
Public Member Functions | |
getChildren () | |
Get an array-type node containing the children of this node. | |
getChildrenOfType ( $type) | |
Get all children of this tree node which have a given name. | |
getFirstChild () | |
Get the first child of a tree node. | |
getLength () | |
Returns the length of the array, or false if this is not an array-type node. | |
getName () | |
Get the name of this node. | |
getNextSibling () | |
Get the next sibling of any node. | |
item ( $i) | |
Returns an item of an array-type node. | |
splitArg () | |
Split a "<part>" node into an associative array containing: name PPNode name index String index value PPNode value. | |
splitExt () | |
Split an "<ext>" node into an associative array containing name, attr, inner and close All values in the resulting array are PPNodes. | |
splitHeading () | |
Split an "<h>" node. | |
There are three types of nodes:
This interface provides access to the tree structure and to the contents of array nodes, but it does not provide access to the internal structure of leaf nodes. Access to leaf data is provided via two means:
Definition at line 37 of file PPNode.php.
MediaWiki\Parser\PPNode::getChildren | ( | ) |
Get an array-type node containing the children of this node.
Returns false if this is not a tree node.
Implemented in MediaWiki\Parser\PPNode_Hash_Array, MediaWiki\Parser\PPNode_Hash_Attr, MediaWiki\Parser\PPNode_Hash_Text, and MediaWiki\Parser\PPNode_Hash_Tree.
MediaWiki\Parser\PPNode::getChildrenOfType | ( | $type | ) |
Get all children of this tree node which have a given name.
Returns an array-type node, or false if this is not a tree node.
string | $type |
Implemented in MediaWiki\Parser\PPNode_Hash_Array, MediaWiki\Parser\PPNode_Hash_Attr, MediaWiki\Parser\PPNode_Hash_Text, and MediaWiki\Parser\PPNode_Hash_Tree.
MediaWiki\Parser\PPNode::getFirstChild | ( | ) |
Get the first child of a tree node.
False if there isn't one.
Implemented in MediaWiki\Parser\PPNode_Hash_Array, MediaWiki\Parser\PPNode_Hash_Attr, MediaWiki\Parser\PPNode_Hash_Text, and MediaWiki\Parser\PPNode_Hash_Tree.
MediaWiki\Parser\PPNode::getLength | ( | ) |
Returns the length of the array, or false if this is not an array-type node.
Implemented in MediaWiki\Parser\PPNode_Hash_Array, MediaWiki\Parser\PPNode_Hash_Attr, MediaWiki\Parser\PPNode_Hash_Text, and MediaWiki\Parser\PPNode_Hash_Tree.
MediaWiki\Parser\PPNode::getName | ( | ) |
Get the name of this node.
The following names are defined here:
h A heading node. template A double-brace node. tplarg A triple-brace node. title The first argument to a template or tplarg node. part Subsequent arguments to a template or tplarg node. #nodelist An array-type node
The subclass may define various other names for tree and leaf nodes.
Implemented in MediaWiki\Parser\PPNode_Hash_Array, MediaWiki\Parser\PPNode_Hash_Attr, MediaWiki\Parser\PPNode_Hash_Text, and MediaWiki\Parser\PPNode_Hash_Tree.
MediaWiki\Parser\PPNode::getNextSibling | ( | ) |
Get the next sibling of any node.
False if there isn't one
Implemented in MediaWiki\Parser\PPNode_Hash_Array, MediaWiki\Parser\PPNode_Hash_Attr, MediaWiki\Parser\PPNode_Hash_Text, and MediaWiki\Parser\PPNode_Hash_Tree.
MediaWiki\Parser\PPNode::item | ( | $i | ) |
Returns an item of an array-type node.
int | $i |
Implemented in MediaWiki\Parser\PPNode_Hash_Array, MediaWiki\Parser\PPNode_Hash_Attr, MediaWiki\Parser\PPNode_Hash_Text, and MediaWiki\Parser\PPNode_Hash_Tree.
MediaWiki\Parser\PPNode::splitArg | ( | ) |
Split a "<part>" node into an associative array containing: name PPNode name index String index value PPNode value.
Implemented in MediaWiki\Parser\PPNode_Hash_Array, MediaWiki\Parser\PPNode_Hash_Attr, MediaWiki\Parser\PPNode_Hash_Text, and MediaWiki\Parser\PPNode_Hash_Tree.
MediaWiki\Parser\PPNode::splitExt | ( | ) |
Split an "<ext>" node into an associative array containing name, attr, inner and close All values in the resulting array are PPNodes.
Inner and close are optional.
Implemented in MediaWiki\Parser\PPNode_Hash_Array, MediaWiki\Parser\PPNode_Hash_Attr, MediaWiki\Parser\PPNode_Hash_Text, and MediaWiki\Parser\PPNode_Hash_Tree.
MediaWiki\Parser\PPNode::splitHeading | ( | ) |
Split an "<h>" node.
Implemented in MediaWiki\Parser\PPNode_Hash_Array, MediaWiki\Parser\PPNode_Hash_Attr, MediaWiki\Parser\PPNode_Hash_Text, and MediaWiki\Parser\PPNode_Hash_Tree.