Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
section.php
1<?php
2namespace Bitrix\Iblock\Copy;
3
4use Bitrix\Iblock\Copy\Implement\Section as SectionImplementer;
6
7class Section extends EntityCopier
8{
9 public function __construct(SectionImplementer $implementer)
10 {
11 $implementer->setSectionCopier($this);
12
13 parent::__construct($implementer);
14 }
15}
__construct(SectionImplementer $implementer)
Definition section.php:9