• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/automation/engine/template.php
  • Класс: Bitrix\Crm\Automation\Engine\Template
  • Вызов: Template::loadBizprocTemplateById
protected function loadBizprocTemplateById($id)
{
	if (!Automation\Helper::isBizprocEnabled())
		throw new NotSupportedException('Module bizproc is not available.');

	$this->bizprocTemplate = \CBPWorkflowTemplateLoader::getList(
		array(),
		array('ID' => (int)$id, 'AUTO_EXECUTE' => \CBPDocumentEventType::Automation)
	)->fetch();

	return ($this->bizprocTemplate !== false);
}