Ivr::__construct

  1. Bitrix24 API (v. 23.675.0)
  2. voximplant
  3. Ivr
  4. __construct
  • Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/ivr/ivr.php
  • Класс: Bitrix\Voximplant\Ivr\Ivr
  • Вызов: Ivr::__construct
public function __construct($id = null)
{
	$id = (int)$id;
	if($id > 0)
	{
		$row = IvrTable::getById($id)->fetch();
		if($row)
		{
			$this->setFromArray($row);
			$this->id = $id;
		}
		$this->items = Item::getItemsByIvrId($this->id);
	}
}

Добавить комментарий