• Модуль: photogallery
  • Путь к файлу: ~/bitrix/modules/photogallery/lib/copy/stepper/section.php
  • Класс: BitrixPhotogalleryCopyStepperSection
  • Вызов: Section::getContainerCollection
private function getContainerCollection($elementIds, array $sectionsRatio, array $enumRatio, $targetIblockId = 0)
{
	$containerCollection = new ContainerCollection();

	foreach ($elementIds as $elementId)
	{
		$container = new Container($elementId);
		$dictionary = new Dictionary(
			[
				"targetIblockId" => $targetIblockId,
				"enumRatio" => $enumRatio,
				"sectionsRatio" => $sectionsRatio
			]
		);
		$container->setDictionary($dictionary);

		$containerCollection[] = $container;
	}

	return $containerCollection;
}