• Модуль: forum
  • Путь к файлу: ~/bitrix/modules/forum/lib/comments/baseobject.php
  • Класс: BitrixForumCommentsBaseObject
  • Вызов: BaseObject::setForum
protected function setForum($id)
{
	if (!$this->checkForumId($id))
		throw new ArgumentTypeException(Loc::getMessage("FORUM_CM_FORUM_IS_WRONG"), self::ERROR_PARAMS_FORUM_ID);

	$this->forum = ForumForumTable::getMainData($id, SITE_ID);

	if (!$this->forum)
		throw new ArgumentException(Loc::getMessage("FORUM_CM_FORUM_IS_LOST"), self::ERROR_PARAMS_FORUM_ID);

	return $this;
}