當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CForumNew::ClearHTML方法代碼示例

本文整理匯總了PHP中CForumNew::ClearHTML方法的典型用法代碼示例。如果您正苦於以下問題:PHP CForumNew::ClearHTML方法的具體用法?PHP CForumNew::ClearHTML怎麽用?PHP CForumNew::ClearHTML使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CForumNew的用法示例。


在下文中一共展示了CForumNew::ClearHTML方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

             if (!CForumNew::CanUserUpdateForum($ID, $USER->GetUserGroupArray(), $USER->GetID())) {
                 $lAdmin->AddUpdateError(GetMessage("FA_NO_PERMS2UPDATE") . " " . $ID . "", $ID);
                 continue;
             }
             $arFields = array("ACTIVE" => $_REQUEST['action'] == "activate" ? "Y" : "N");
             if (!CForumNew::Update($ID, $arFields)) {
                 if ($ex = $APPLICATION->GetException()) {
                     $lAdmin->AddGroupError($ex->GetString(), $ID);
                 } else {
                     $lAdmin->AddGroupError(GetMessage("FA_ERROR_UPDATE") . " " . $ID . "", $ID);
                 }
             }
             break;
         case "clear_html":
             $DB->StartTransaction();
             if (!CForumNew::ClearHTML($ID)) {
                 $DB->Rollback();
                 $lAdmin->AddGroupError(GetMessage("FA_ERROR_UPDATE") . " " . $ID . "", $ID);
             }
             $DB->Commit();
             break;
     }
 }
 // Clear cache.
 $nameSpace = "bitrix";
 $arComponentPath = array($nameSpace . ":forum.index", $nameSpace . ":forum.rss", $nameSpace . ":forum.search", $nameSpace . ":forum.statistic", $nameSpace . ":forum.topic.active", $nameSpace . ":forum.topic.move", $nameSpace . ":forum.topic.reviews", $nameSpace . ":forum.topic.search", $nameSpace . ":forum.user.list", $nameSpace . ":forum.user.post");
 foreach ($arComponentPath as $path) {
     $componentRelativePath = CComponentEngine::MakeComponentPath($path);
     $arComponentDescription = CComponentUtil::GetComponentDescr($path);
     if (strLen($componentRelativePath) <= 0 || !is_array($arComponentDescription)) {
         continue;
開發者ID:DarneoStudio,項目名稱:bitrix,代碼行數:31,代碼來源:forum_admin.php


注:本文中的CForumNew::ClearHTML方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。