• Модуль: webdav
  • Путь к файлу: ~/bitrix/modules/webdav/classes/iblocksocnetevent.php
  • Класс: CWebDavSocNetEvent
  • Вызов: CWebDavSocNetEvent::SocnetLogMessageDelete
public function SocnetLogMessageDelete($ID, $arFields) // delete log comment
{
	$arRes = $this->_getSocnetLogEntityByComment($arFields);

	if ($arRes && (intval($arRes["TMP_ID"]) > 0))
	{
		$commentID = $this->_getSocnetLogCommentByForumComment($ID, $arRes);
		if ($commentID)
		{
			CSocNetLogComments::Delete($commentID);
		}
	}
}