TemplateManager::startCopy

  1. Bitrix24 API (v. 23.675.0)
  2. tasks
  3. TemplateManager
  4. startCopy
  • Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/copy/templatemanager.php
  • Класс: BitrixTasksCopyTemplateManager
  • Вызов: TemplateManager::startCopy
public function startCopy()
{
	$containerCollection = $this->getContainerCollection();

	$templateImplementer = $this->getTemplateImplementer();
	$templateCopier = $this->getTemplateCopier($templateImplementer);

	if ($this->markerChecklist)
	{
		$checklistImplementer = $this->getChecklistImplementer();
		$templateCopier->addEntityToCopy($this->getChecklistCopier($checklistImplementer));
	}

	return $templateCopier->copy($containerCollection);
}

Добавить комментарий