• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/automation/demo/wizard.php
  • Класс: Bitrix\Crm\Automation\Demo\Wizard
  • Вызов: Wizard::installVersion
static function installVersion($version)
{
	$version = (int)$version;
	if ($version <= 0)
		$version = 1;

	if (static::isNeedleFor(\CCrmOwnerType::Lead))
	{
		static::installAutomation(\CCrmOwnerType::Lead, $version);
	}

	if (static::isNeedleFor(\CCrmOwnerType::Deal))
	{
		static::installAutomation(\CCrmOwnerType::Deal, $version);
	}
}