• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/publicaction/block.php
  • Класс: Bitrix\Landing\PublicAction\Block
  • Вызов: Block::getManifestFile
static function getManifestFile($code)
{
	$result = new PublicActionResult();

	if (mb_strpos($code, ':') === false)
	{
		$code = 'bitrix:' . $code;
	}

	$manifest = BlockCore::getManifestFile($code);
	$result->setResult($manifest);

	return $result;
}