• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/component/base.php
  • Класс: Bitrix\Crm\Component\Base
  • Вызов: Base::addTopPanel
public function addTopPanel(\CBitrixComponentTemplate $template): void
{
	if (!$this->isIframe() && !IntranetManager::isEntityTypeInCustomSection($this->getEntityTypeIdFromParams()))
	{
		$template->setViewTarget('above_pagetitle');
		global $APPLICATION;
		$APPLICATION->IncludeComponent(
			'bitrix:crm.control_panel',
			'',
			$this->getTopPanelParameters(),
			$this
		);
		$template->endViewTarget();
	}
}