本文整理汇总了PHP中CUtil::jSPostUnescape方法的典型用法代码示例。如果您正苦于以下问题:PHP CUtil::jSPostUnescape方法的具体用法?PHP CUtil::jSPostUnescape怎么用?PHP CUtil::jSPostUnescape使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CUtil
的用法示例。
在下文中一共展示了CUtil::jSPostUnescape方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: exec
public function exec()
{
try {
if ($this->request->isPost()) {
\CUtil::jSPostUnescape();
$this->request->addFilter(new PostDecodeFilter());
}
$this->resolveAction();
$this->checkAction();
$this->checkRequiredModules();
if (!$this->prepareParams()) {
$this->sendJsonErrorResponse();
}
//todo create Event!
if ($this->processBeforeAction($this->getAction()) !== false) {
$this->runAction();
}
} catch (\Exception $e) {
$this->runProcessingException($e);
}
}
示例2: define
define('NO_AGENT_CHECK', true);
define('DisableEventsCheck', true);
define('FX_SECURITY_SHOW_MESSAGE', true);
define("PUBLIC_AJAX_MODE", true);
define("NOT_CHECK_PERMISSIONS", true);
require_once($_SERVER["DOCUMENT_ROOT"]."/freetrix/modules/main/include/prolog_before.php");
require_once($_SERVER["DOCUMENT_ROOT"]."/freetrix/modules/iblock/admin_tools.php");
IncludeModuleLangFile(__FILE__);
header('Content-Type: application/x-javascript; charset='.LANG_CHARSET);
if(!CModule::includeModule("iblock") || !CModule::includeModule('fileman'))
{
die();
}
CUtil::jSPostUnescape();
if (check_freetrix_sessid())
{
if ($_REQUEST["ENTITY_TYPE"] === "B")
{
$ipropTemplates = new \Freetrix\Iblock\InheritedProperty\IblockTemplates($_REQUEST["ENTITY_ID"]);
$arFields = array(
"NAME" => $_POST["NAME"],
"CODE" => $_POST["CODE"],
"DESCRIPTION" => $_POST["DESCRIPTION"],
);
}
elseif ($_REQUEST["ENTITY_TYPE"] === "S")
{
$ipropTemplates = new \Freetrix\Iblock\InheritedProperty\SectionTemplates($_REQUEST["IBLOCK_ID"], $_REQUEST["ENTITY_ID"]);
$arFields = array(