Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sale/lib/exchange/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sale/lib/exchange/limit.php

<?php


namespace Bitrix\Sale\Exchange;


use Bitrix\Bitrix24\Feature;

class Limit
{
	/**
	 * @return bool
	 */
	public static function isExchangeAvailable(): bool
	{
		$result = true;
		if (\CModule::IncludeModule('bitrix24'))
		{
			$result = Feature::isFeatureEnabled('limit_shop_1c');
		}

		return $result;
	}
}