• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/restriction/integrationshoprestriction.php
  • Класс: Bitrix\Crm\Restriction\IntegrationShopRestriction
  • Вызов: IntegrationShopRestriction::__construct
public function __construct()
{
	$restrictionName = 'crm_limit_integration_shop_bitrix';
	if (Bitrix24Manager::isFeatureEnabled($restrictionName))
	{
		$limit = max(0, (int)Bitrix24Manager::getVariable($restrictionName));
	}
	else
	{
		$limit = -1;
	}
	$restrictionSliderInfo = [
		'ID' => 'limit_crm_integration_shop_bitrix',
	];
	parent::__construct($restrictionName, $limit, null, $restrictionSliderInfo);
	$this->load();
}