• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/Controller/EntityDetails.php
  • Класс: BitrixCrmMobileControllerEntityDetails
  • Вызов: EntityDetails::isCategoriesEnabled
private function isCategoriesEnabled(): bool
{
	$isCategoriesEnabled = $this->getFactory()->isCategoriesEnabled();
	$entityTypeId = $this->getFactory()->getEntityTypeId();

	if ($entityTypeId === CCrmOwnerType::Deal)
	{
		return true;
	}

	if (CCrmOwnerType::isPossibleDynamicTypeId($entityTypeId) && $isCategoriesEnabled)
	{
		return true;
	}

	return false;
}