• Модуль: vote
  • Путь к файлу: ~/bitrix/modules/vote/lib/answertypes.php
  • Класс: BitrixVoteAnswerTypes
  • Вызов: AnswerTypes::getTitleById
static function getTitleById($id)
{
	$res = array_flip((new ReflectionClass(__CLASS__))->getConstants());
	$val = $id;
	if (array_key_exists($id, $res))
	{
		$val = Loc::getMessage("VOTE_ANSWER_TYPE_".$res[$id]);
	}
	return $val;
}