<?php
/**
* SKIPPED
**/
class gXML extends DomDocument
{
/**
* SKIPPED
**/
/**
* Constructor
* @param string $input Plain string XML data or filename to load XML data from.
* @param boolean $fromFile If true, XML data will be loaded from $input file.
* @access protected
*/
function __construct($input, $fromFile = false)
{
/**
* SKIPPED
**/
}
/**
* Returns whole XML document as a string.
* @access public
* @param boolean $asHTML If true, XML data will be outputted as HTML, not XML.
* @return string
**/
function out($asHTML = false)
{
/**
* SKIPPED
**/
}
/**
* Applies XSL template to document.
* @access public
* @param string $input Plain string XML data or filename to load XML data from.
* @param boolean $fromFile If true, XML data will be loaded from $input file.
**/
function render($input, $fromFile = false)
{
/**
* SKIPPED
**/
}
/**
* Returns XPath result for query specified with $query parameter.
* @access public
* @param string $query XPath query string
* @param boolean $asArray If true, result will be converted into simple array
* @return object
**/
function query($query, $asArray = false)
{
/**
* SKIPPED
**/
}
/**
* Imports nodes and assigns them to other nodes.
* @access public
* @param string $destinationPath XPath query string for destination nodes.
* @param gXML $sourceXML Source XML document
* @param string $sourcePath XPath query string for source nodes.
**/
function assign($destinationPath, $sourceXML, $sourcePath = "/root/*")
{
/**
* SKIPPED
**/
}
/**
* Sets the value of specified node.
* @access public
* @param string $path Path to target node.
* @param string $value Text.
**/
function setNode($path, $value)
{
/**
* SKIPPED
**/
}
/**
* Sets the value of specified node using callback function.
* @access public
* @param string $path Path to target nodes.
* @param string $value Callback function.
**/
function callbackNodes($path, $value)
{
/**
* SKIPPED
**/
}
/**
* Creates and appends node.
* @access public
* @param string $path Path to target node.
* @param string $name Tag name.
* @param string $value Text.
**/
function appendNode($path, $name, $value)
{
/**
* SKIPPED
**/
}
}
?>