• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/userbudgetpool.php
  • Класс: BitrixSaleInternalsUserBudgetPool
  • Вызов: UserBudgetPool::getUserBudgetPool
static function getUserBudgetPool($userId)
{
	if (!isset(static::$userBudgetPool[$userId]))
	{
		static::$userBudgetPool[$userId] = new static($userId);
	}

	return static::$userBudgetPool[$userId];
}