• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/quickanswers/quickanswer.php
  • Класс: BitrixImOpenlinesQuickAnswersQuickAnswer
  • Вызов: QuickAnswer::getById
static function getById($id)
{
	if(!self::$dataManager)
	{
		self::setDataManager(self::getDefaultDataManager());
	}
	$data = self::$dataManager->getById($id);
	if(!empty($data))
	{
		return new self($data);
	}

	return false;
}