• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/classes/general/notify.php
  • Класс: CIntranetNotify
  • Вызов: CIntranetNotify::OnAfterSocNetLogCommentAdd
static function OnAfterSocNetLogCommentAdd($ID, $arFields)
{
	if (
		$arFields['ENTITY_TYPE'] === SONET_INTRANET_NEW_USER_ENTITY
		&& $arFields['EVENT_ID'] === SONET_INTRANET_NEW_USER_COMMENT_EVENT_ID
	)
	{
		$arUpdateFields = array(
			'RATING_TYPE_ID' => 'INTRANET_NEW_USER_COMMENT',
			'RATING_ENTITY_ID' => $ID,
		);

		CSocNetLogComments::Update($ID, $arUpdateFields);
	}
}