• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/ivr/action.php
  • Класс: BitrixVoximplantIvrAction
  • Вызов: Action::getActionsByItemId
static function getActionsByItemId($itemId)
{
	$result = array();
	$cursor = IvrActionTable::getList(array(
		'filter' => array(
			'ITEM_ID' => $itemId
		),
		'order' => array(
			'DIGIT' => 'ASC'
		)
	));

	while ($row = $cursor->fetch())
	{
		$action = self::createFromArray($row);
		$result[] = $action;
	}

	return $result;
}