当前位置: 首页>>代码示例>>PHP>>正文


PHP CUtil::jSPostUnescape方法代码示例

本文整理汇总了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);
     }
 }
开发者ID:andy-profi,项目名称:bxApiDocs,代码行数:21,代码来源:controller.php

示例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(
开发者ID:ASDAFF,项目名称:open_bx,代码行数:31,代码来源:iblock_templates.ajax.php


注:本文中的CUtil::jSPostUnescape方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。