• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/classes/general/log_comments.php
  • Класс: CAllSocNetLogComments
  • Вызов: CAllSocNetLogComments::GetByID
static function GetByID($ID)
{
	global $APPLICATION;

	$ID = intval($ID);
	if ($ID <= 0)
	{
		$APPLICATION->ThrowException(GetMessage("SONET_GLC_WRONG_PARAMETER_ID"), "ERROR_NO_ID");
		return false;
	}

	$dbResult = CSocNetLogComments::GetList(array(), array("ID" => $ID));
	if ($arResult = $dbResult->GetNext())
		return $arResult;

	return false;
}