• Модуль: salescenter
  • Путь к файлу: ~/bitrix/modules/salescenter/lib/component/paysystem.php
  • Класс: BitrixSalesCenterComponentPaySystem
  • Вызов: PaySystem::getImagePath
private function getImagePath(): string
{
	static $imagePath = '';
	if ($imagePath)
	{
		return $imagePath;
	}

	$componentPath = CComponentEngine::makeComponentPath('bitrix:salescenter.paysystem.panel');
	$componentPath = getLocalPath('components' . $componentPath);

	$imagePath = $componentPath . '/templates/.default/images/';
	return $imagePath;
}