本文整理汇总了PHP中xajax::registerCatchAllFunction方法的典型用法代码示例。如果您正苦于以下问题:PHP xajax::registerCatchAllFunction方法的具体用法?PHP xajax::registerCatchAllFunction怎么用?PHP xajax::registerCatchAllFunction使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类xajax
的用法示例。
在下文中一共展示了xajax::registerCatchAllFunction方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: xajax
} else {
if (!WPRO_ANONYMOUS_ACCESS) {
if (isset($_POST['xajax'])) {
if (WPRO_PATH_XAJAX == WPRO_DIR . 'core/libs/xajax/') {
require_once WPRO_PATH_XAJAX . "xajax.inc.php";
} else {
if (!wpro_class_exists('xajax')) {
require_once WPRO_PATH_XAJAX . "xajax.inc.php";
}
}
if (wpro_class_exists('wpro_xajax')) {
$xajax = new wpro_xajax();
} else {
$xajax = new xajax();
}
$xajax->registerCatchAllFunction("wpro_xajaxCatchUnauthorized");
$xajax->processRequests();
} else {
// session does not exist and anonymous access is not allowed
header('HTTP/1.0 401 Unauthorized');
echo WPRO_STR_UNAUTHORIZED;
exit;
}
} else {
// session does not exist, anonymous access is allowed, generate editor with default settings
$EDITOR = new wysiwygPro();
$EDITOR->_createSession = false;
}
}
}
// store unchanged editor
示例2: myCatchAllFunction
}
function myCatchAllFunction($funcName, $args)
{
$objResponse = new xajaxResponse();
$objResponse->addAlert("This is from the catch all function");
// return $objResponse;
return test2ndFunction($args[0], $objResponse);
}
function testForm($formData)
{
$objResponse = new xajaxResponse();
$objResponse->addAlert("This is from the regular function");
return test2ndFunction($formData, $objResponse);
}
$xajax = new xajax();
$xajax->registerCatchAllFunction("myCatchAllFunction");
//$xajax->registerFunction("testForm");
$xajax->processRequests();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Catch-all Function Test | xajax Tests</title>
<?php
$xajax->printJavascript("../");
?>
</head>
<body>
<h2><a href="index.php">xajax Tests</a></h2>