void _processCData(
string
$cdata
)
|
|
XML Callback to process CDATA elements
Parameters:
|
string |
$cdata: |
A buffer of data that represents the body of the xml element |
API Tags:
Redefined in descendants as:
void _processChildElement(
$childElement, object
$childeElement
)
|
|
This call back processes the child as it is pooped off the stack. Allows the parent element to aggregate data from the children elements.
Parameters:
|
object |
$childeElement: |
The child element that was just completed. |
|
|
$childElement: |
|
API Tags:
Redefined in descendants as:
void _processEndElement(
string
$tag
)
|
|
XML Callback to process end elements
Parameters:
|
string |
$tag: |
The name of the tage being processed |
API Tags:
Redefined in descendants as:
void _processStartElement(
string
$tag, array
$attributes
)
|
|
XML Callback to process start elements
Parameters:
|
string |
$tag: |
The name of the tage being processed |
|
array |
$attributes: |
The attributes that were present on the xml element. |
API Tags:
Redefined in descendants as: