• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/block.php
  • Класс: BitrixLandingBlock
  • Вызов: Block::getMessageBlock
static function getMessageBlock($params, $template = '')
{
	ob_start();
	Manager::getApplication()->includeComponent(
		'bitrix:landing.blocks.message',
		$template,
		$params,
		false
	);
	$blockMesage = ob_get_contents();
	ob_end_clean();

	return $blockMesage;
}