• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/assets/preprocessing/theme.php
  • Класс: BitrixLandingAssetsPreProcessingTheme
  • Вызов: Theme::getThemeManifest
static function getThemeManifest(string $tplCode): array
{
	$path = self::FILE_PATH_SITE_MANIFEST;
	$path = Manager::getDocRoot() . str_replace('#code#', $tplCode, $path);
	if (file_exists($path))
	{
		$manifest = include $path;
		if (is_array($manifest))
		{
			return $manifest;
		}
	}
	return [];
}