Documentation

landing.block.getmanifestfile

landing.block.getmanifestfile(code) 

This method gets block manifest from repository. Returns block manifest or an error.

Parmeters

Method Description Available from version
code Block code

Example

BX24.callMethod(
	'landing.block.getmanifestfile',
	{
		code: '01.big_with_text'
	},
	function(result)
	{
		if(result.error())
		{
			console.error(result.error());
		}
		else
		{
			console.info(result.data());
		}
	}
);


© «Bitrix24», 2001-2024
Up