• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/ivr/item.php
  • Класс: BitrixVoximplantIvrItem
  • Вызов: Item::delete
public function delete()
{
	foreach ($this->actions as $action)
	{
		$action->delete();
	}
	$this->actions = array();

	if($this->id > 0)
	{
		IvrItemTable::delete($this->id);
		$this->id = 0;
	}
}