• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/config/options/checkrightsondecreasestoreamount.php
  • Класс: BitrixCatalogConfigOptionsCheckRightsOnDecreaseStoreAmount
  • Вызов: CheckRightsOnDecreaseStoreAmount::isAvailableValue
static function isAvailableValue(string $value): bool
{
	$available = [
		self::ENABLED_VALUE,
		self::DISABLED_VALUE,
		self::NOT_USED,
	];

	return in_array($value, $available, true);
}