• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/poolquantity.php
  • Класс: BitrixSaleInternalsPoolQuantity
  • Вызов: PoolQuantity::getInstance
static function getInstance($key)
{
	if (!isset(static::$poolList[$key]))
	{
		$pool = new static();
		static::$poolList[$key] = $pool;
	}

	return static::$poolList[$key];
}