BlogPost::copyChildren

  1. Bitrix24 API (v. 23.675.0)
  2. blog
  3. BlogPost
  4. copyChildren
  • Модуль: blog
  • Путь к файлу: ~/bitrix/modules/blog/lib/copy/implement/blogpost.php
  • Класс: BitrixBlogCopyImplementBlogPost
  • Вызов: BlogPost::copyChildren
public function copyChildren(Container $container, $entityId, $copiedEntityId)
{
	$this->copyUfFields($entityId, $copiedEntityId, $this->ufEntityObject);

	$results = [];

	if (in_array("comments", $this->features))
	{
		$results[] = $this->copyComments($entityId, $copiedEntityId);
	}

	return $this->getResult($results);
}

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