本文整理汇总了PHP中CBlogComment::DeleteLog方法的典型用法代码示例。如果您正苦于以下问题:PHP CBlogComment::DeleteLog方法的具体用法?PHP CBlogComment::DeleteLog怎么用?PHP CBlogComment::DeleteLog使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CBlogComment
的用法示例。
在下文中一共展示了CBlogComment::DeleteLog方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: GetMessage
}
}
}
if (IntVal($arResult["ajax_comment"]) <= 0) {
$arResult["ERROR_MESSAGE"] = GetMessage("B_B_PC_MES_ERROR_SHOW");
}
} elseif (IntVal($_GET["hide_comment_id"]) > 0) {
$arComment = CBlogComment::GetByID(IntVal($_GET["hide_comment_id"]));
if ($arResult["Perm"] >= BLOG_PERMS_MODERATE && !empty($arComment)) {
if ($arComment["PUBLISH_STATUS"] != BLOG_PUBLISH_STATUS_PUBLISH) {
$arResult["ERROR_MESSAGE"] = GetMessage("B_B_PC_MES_ERROR_SHOW");
} else {
if (check_bitrix_sessid()) {
if ($commentID = CBlogComment::Update($arComment["ID"], array("PUBLISH_STATUS" => BLOG_PUBLISH_STATUS_READY))) {
BXClearCache(true, "/blog/comment/" . intval($arParams["ID"] / 100) . "/" . $arParams["ID"] . "/");
CBlogComment::DeleteLog($arComment["ID"]);
$arResult["ajax_comment"] = $arComment["ID"];
}
} else {
$arResult["ERROR_MESSAGE"] = GetMessage("B_B_PC_MES_ERROR_SESSION");
}
}
}
if (IntVal($arResult["ajax_comment"]) <= 0 && strlen($arResult["ERROR_MESSAGE"]) <= 0) {
$arResult["ERROR_MESSAGE"] = GetMessage("B_B_PC_MES_ERROR_HIDE");
}
} elseif (IntVal($_GET["hidden_add_comment_id"]) > 0) {
$arResult["MESSAGE"] = GetMessage("B_B_PC_MES_HIDDEN_ADDED");
}
$arResult["CanUserComment"] = false;
$arResult["canModerate"] = false;