• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/cashbox/restrictions/paysystem.php
  • Класс: Bitrix\Sale\Cashbox\Restrictions\PaySystem
  • Вызов: PaySystem::check
static function check($params, array $restrictionParams, $serviceId = 0)
{
	if (is_array($restrictionParams) && isset($restrictionParams['PAY_SYSTEMS']))
	{
		$diff = array_diff($params, $restrictionParams['PAY_SYSTEMS']);
		return empty($diff);
	}

	return true;
}