• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/lib/copy/manager.php
  • Класс: BitrixIblockCopyManager
  • Вызов: Manager::getContainerCollection
private function getContainerCollection()
{
	$containerCollection = new ContainerCollection();

	foreach ($this->iblockIdsToCopy as $iblockId)
	{
		$container = new Container($iblockId);
		if ($this->dictionary)
		{
			$container->setDictionary($this->dictionary);
		}
		$containerCollection[] = $container;
	}

	return $containerCollection;
}