• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/component/controlpanel/controlpanelmenumapper.php
  • Класс: Bitrix\Crm\Component\ControlPanel\ControlPanelMenuMapper
  • Вызов: ControlPanelMenuMapper::getParentDynamicMenuId
static function getParentDynamicMenuId(int $entityTypeId, ?bool $withCRMMenuCodeNamePrefix = false): ?string
{
	if (isset($entityTypeId) && CCrmOwnerType::isPossibleDynamicTypeId($entityTypeId))
	{
		if ($withCRMMenuCodeNamePrefix)
		{
			return self::CONTROL_PANEL_CODE_NAME . '_' . self::MENU_ID_DYNAMIC_LIST;
		}

		return self::MENU_ID_DYNAMIC_LIST;
	}

	return null;
}