• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/commentaux/handlermanager.php
  • Класс: BitrixSocialnetworkCommentAuxHandlerManager
  • Вызов: HandlerManager::getHandlerByPostText
public function getHandlerByPostText($postText)
{
	$handler = false;

	if(isset($this->handlerListByPostText[$postText]))
	{
		$handler = new $this->handlerListByPostText[$postText]();
	}

	return $handler;
}