• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/boardcomponentbutton.php
  • Класс: BitrixReportVisualConstructorBoardComponentButton
  • Вызов: BoardComponentButton::getComponentStringList
private function getComponentStringList()
{
	$stringList = array();
	foreach($this->cssPathList as $targetAsset)
	{
		$assetInfo = Asset::getInstance()->getAssetInfo($targetAsset['NAME'], AssetMode::ALL);
		if (!empty($assetInfo['STRINGS']))
		{
			$stringList = array_merge($stringList, $assetInfo['STRINGS']);
		}
	}

	foreach($this->jsPathList as $targetAsset)
	{
		$assetInfo = Asset::getInstance()->getAssetInfo($targetAsset['NAME'], AssetMode::ALL);
		if (!empty($assetInfo['STRINGS']))
		{
			$stringList = array_merge($stringList, $assetInfo['STRINGS']);
		}
	}
	return $stringList;
}