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