• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/component/reportstorelist.php
  • Класс: BitrixCatalogComponentReportStoreList
  • Вызов: ReportStoreList::prepareTitleViewForColumn
private function prepareTitleViewForColumn(array $column): string
{
	if (!isset($column['TITLE'], $column['STORE_ID']))
	{
		return '';
	}

	if ($column['TITLE'])
	{
		$title = htmlspecialcharsbx($column['TITLE']);
	}
	else
	{
		$title = Loc::getMessage('CATALOG_REPORT_STORE_LIST_EMPTY_STORE_NAME');
	}

	return $title;
}