• Модуль: meeting
  • Путь к файлу: ~/bitrix/modules/meeting/classes/general/events.php
  • Класс: CMeetingForumHandlers
  • Вызов: CMeetingForumHandlers::OnCommentTopicAdd
public function OnCommentTopicAdd($entityType, $entityID, $arPost, &$arTopic)
{
	global $USER;
	if ($entityType !== $this->type)
		return;

	$arTopic = array(
		'AUTHOR_ID' => $USER->GetID(),
		'TITLE' => $this->arEntity['TITLE'],
		'TAGS' => '',
		'MESSAGE' => $this->arEntity['TITLE']
	);
	return true;
}