• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/orderhistory.php
  • Класс: BitrixSaleOrderHistory
  • Вызов: OrderHistory::checkActionLogLevel
static function checkActionLogLevel($level)
{
	$orderHistoryActionLogLevel = MainConfigOption::get(
		'sale',
		'order_history_action_log_level',
		static::SALE_ORDER_HISTORY_ACTION_LOG_LEVEL_0
	);

	if ($level > $orderHistoryActionLogLevel)
		return false;

	return true;
}