📄 xajaxresponse.inc.php
字号:
* @param string $sFunc the name of a Javascript function
* @param mixed $args,... optional arguments to pass to the Javascript function
*/
function addScriptCall() {
$arguments = func_get_args();
$sFunc = array_shift($arguments);
$sData = $this->_buildObjXml($arguments);
$this->xml .= $this->_cmdXML(array("n"=>"jc","t"=>$sFunc),$sData);
}
/**
* Adds a remove element command message to the XML response.
*
* <i>Usage:</i> <kbd>$objResponse->addRemove("Div2");</kbd>
*
* @param string contains the id of an HTML element to be removed
*/
function addRemove($sTarget)
{
$this->xml .= $this->_cmdXML(array("n"=>"rm","t"=>$sTarget),'');
}
/**
* Adds a create element command message to the XML response.
*
* <i>Usage:</i> <kbd>$objResponse->addCreate("parentDiv", "h3", "myid");</kbd>
*
* @param string contains the id of an HTML element to to which the new
* element will be appended.
* @param string the tag to be added
* @param string the id to be assigned to the new element
* @param string deprecated, use the addCreateInput() method instead
*/
function addCreate($sParent, $sTag, $sId, $sType="")
{
if ($sType)
{
trigger_error("The \$sType parameter of addCreate has been deprecated. Use the addCreateInput() method instead.", E_USER_WARNING);
return;
}
$this->xml .= $this->_cmdXML(array("n"=>"ce","t"=>$sParent,"p"=>$sId),$sTag);
}
/**
* Adds a insert element command message to the XML response.
*
* <i>Usage:</i> <kbd>$objResponse->addInsert("childDiv", "h3", "myid");</kbd>
*
* @param string contains the id of the child before which the new element
* will be inserted
* @param string the tag to be added
* @param string the id to be assigned to the new element
*/
function addInsert($sBefore, $sTag, $sId)
{
$this->xml .= $this->_cmdXML(array("n"=>"ie","t"=>$sBefore,"p"=>$sId),$sTag);
}
/**
* Adds a insert element command message to the XML response.
*
* <i>Usage:</i> <kbd>$objResponse->addInsertAfter("childDiv", "h3", "myid");</kbd>
*
* @param string contains the id of the child after which the new element
* will be inserted
* @param string the tag to be added
* @param string the id to be assigned to the new element
*/
function addInsertAfter($sAfter, $sTag, $sId)
{
$this->xml .= $this->_cmdXML(array("n"=>"ia","t"=>$sAfter,"p"=>$sId),$sTag);
}
/**
* Adds a create input command message to the XML response.
*
* <i>Usage:</i> <kbd>$objResponse->addCreateInput("form1", "text", "username", "input1");</kbd>
*
* @param string contains the id of an HTML element to which the new input
* will be appended
* @param string the type of input to be created (text, radio, checkbox,
* etc.)
* @param string the name to be assigned to the new input and the variable
* name when it is submitted
* @param string the id to be assigned to the new input
*/
function addCreateInput($sParent, $sType, $sName, $sId)
{
$this->xml .= $this->_cmdXML(array("n"=>"ci","t"=>$sParent,"p"=>$sId,"c"=>$sType),$sName);
}
/**
* Adds an insert input command message to the XML response.
*
* <i>Usage:</i> <kbd>$objResponse->addInsertInput("input5", "text", "username", "input1");</kbd>
*
* @param string contains the id of the child before which the new element
* will be inserted
* @param string the type of input to be created (text, radio, checkbox,
* etc.)
* @param string the name to be assigned to the new input and the variable
* name when it is submitted
* @param string the id to be assigned to the new input
*/
function addInsertInput($sBefore, $sType, $sName, $sId)
{
$this->xml .= $this->_cmdXML(array("n"=>"ii","t"=>$sBefore,"p"=>$sId,"c"=>$sType),$sName);
}
/**
* Adds an insert input command message to the XML response.
*
* <i>Usage:</i> <kbd>$objResponse->addInsertInputAfter("input7", "text", "email", "input2");</kbd>
*
* @param string contains the id of the child after which the new element
* will be inserted
* @param string the type of input to be created (text, radio, checkbox,
* etc.)
* @param string the name to be assigned to the new input and the variable
* name when it is submitted
* @param string the id to be assigned to the new input
*/
function addInsertInputAfter($sAfter, $sType, $sName, $sId)
{
$this->xml .= $this->_cmdXML(array("n"=>"iia","t"=>$sAfter,"p"=>$sId,"c"=>$sType),$sName);
}
/**
* Adds an event command message to the XML response.
*
* <i>Usage:</i> <kbd>$objResponse->addEvent("contentDiv", "onclick", "alert(\'Hello World\');");</kbd>
*
* @param string contains the id of an HTML element
* @param string the event you wish to set ("onclick", "onmouseover", etc.)
* @param string the Javascript string you want the event to invoke
*/
function addEvent($sTarget,$sEvent,$sScript)
{
$this->xml .= $this->_cmdXML(array("n"=>"ev","t"=>$sTarget,"p"=>$sEvent),$sScript);
}
/**
* Adds a handler command message to the XML response.
*
* <i>Usage:</i> <kbd>$objResponse->addHandler("contentDiv", "onclick", "content_click");</kbd>
*
* @param string contains the id of an HTML element
* @param string the event you wish to set ("onclick", "onmouseover", etc.)
* @param string the name of a Javascript function that will handle the
* event. Multiple handlers can be added for the same event
*/
function addHandler($sTarget,$sEvent,$sHandler)
{
$this->xml .= $this->_cmdXML(array("n"=>"ah","t"=>$sTarget,"p"=>$sEvent),$sHandler);
}
/**
* Adds a remove handler command message to the XML response.
*
* <i>Usage:</i> <kbd>$objResponse->addRemoveHandler("contentDiv", "onclick", "content_click");</kbd>
*
* @param string contains the id of an HTML element
* @param string the event you wish to remove ("onclick", "onmouseover",
* etc.)
* @param string the name of a Javascript handler function that you want to
* remove
*/
function addRemoveHandler($sTarget,$sEvent,$sHandler)
{
$this->xml .= $this->_cmdXML(array("n"=>"rh","t"=>$sTarget,"p"=>$sEvent),$sHandler);
}
/**
* Adds an include script command message to the XML response.
*
* <i>Usage:</i> <kbd>$objResponse->addIncludeScript("functions.js");</kbd>
*
* @param string URL of the Javascript file to include
*/
function addIncludeScript($sFileName)
{
$this->xml .= $this->_cmdXML(array("n"=>"in"),$sFileName);
}
/**
* Returns the XML to be returned from your function to the xajax processor
* on your page. Since xajax 0.2, you can also return an xajaxResponse
* object from your function directly, and xajax will automatically request
* the XML using this method call.
*
* <i>Usage:</i> <kbd>return $objResponse->getXML();</kbd>
*
* @return string response XML data
*/
function getXML()
{
$sXML = "<?xml version=\"1.0\"";
if ($this->sEncoding && strlen(trim($this->sEncoding)) > 0)
$sXML .= " encoding=\"".$this->sEncoding."\"";
$sXML .= " ?"."><xjx>" . $this->xml . "</xjx>";
return $sXML;
}
/**
* Adds the commands of the provided response XML output to this response
* object
*
* <i>Usage:</i>
* <code>$r1 = $objResponse1->getXML();
* $objResponse2->loadXML($r1);
* return $objResponse2->getXML();</code>
*
* @param string the response XML (returned from a getXML() method) to add
* to the end of this response object
*/
function loadXML($mXML)
{
if (is_a($mXML, "xajaxResponse")) {
$mXML = $mXML->getXML();
}
$sNewXML = "";
$iStartPos = strpos($mXML, "<xjx>") + 5;
$sNewXML = substr($mXML, $iStartPos);
$iEndPos = strpos($sNewXML, "</xjx>");
$sNewXML = substr($sNewXML, 0, $iEndPos);
$this->xml .= $sNewXML;
}
/**
* Generates XML from command data
*
* @access private
* @param array associative array of attributes
* @param string data
* @return string XML command
*/
function _cmdXML($aAttributes, $sData)
{
if ($this->bOutputEntities) {
if (function_exists('mb_convert_encoding')) {
$sData = call_user_func_array('mb_convert_encoding', array(&$sData, 'HTML-ENTITIES', $this->sEncoding));
}
else {
trigger_error("The xajax XML response output could not be converted to HTML entities because the mb_convert_encoding function is not available", E_USER_NOTICE);
}
}
$xml = "<cmd";
foreach($aAttributes as $sAttribute => $sValue)
$xml .= " $sAttribute=\"$sValue\"";
if ($sData !== null && !stristr($sData,'<![CDATA['))
$xml .= "><![CDATA[$sData]]></cmd>";
else if ($sData !== null)
$xml .= ">$sData</cmd>";
else
$xml .= "></cmd>";
return $xml;
}
/**
* Recursively serializes a data structure in XML so it can be sent to
* the client. It could be thought of as the opposite of
* {@link xajax::_parseObjXml()}.
*
* @access private
* @param mixed data structure to serialize to XML
* @return string serialized XML
*/
function _buildObjXml($var) {
if (gettype($var) == "object") $var = get_object_vars($var);
if (!is_array($var)) {
return "<![CDATA[$var]]>";
}
else {
$data = "<xjxobj>";
foreach ($var as $key => $value) {
$data .= "<e>";
$data .= "<k>" . htmlspecialchars($key) . "</k>";
$data .= "<v>" . $this->_buildObjXml($value) . "</v>";
$data .= "</e>";
}
$data .= "</xjxobj>";
return $data;
}
}
}// end class xajaxResponse
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -