• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/entitybankdetail.php
  • Класс: Bitrix\Crm\EntityBankDetail
  • Вызов: EntityBankDetail::getDefaultSectionTitle
public function getDefaultSectionTitle(int $countryId): string
{
	$title = '';

	$countryCode = EntityPreset::getCountryCodeById($countryId);
	$title = $this->getPhrase("CRM_BANK_DETAIL_SECTION_{$countryCode}_TITLE", $countryId);
	if ($title === null)
	{
		$title = '';
	}

	return $title;
}