• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/assets/preprocessing/customextensions.php
  • Класс: BitrixLandingAssetsPreProcessingCustomExtensions
  • Вызов: CustomExtensions::processingLanding
static function processingLanding(int $landingId): void
{
	$res = BlockTable::getList([
		'select' => [
			'ID'
		],
		'filter' => [
			'LID' => $landingId,
			'=DELETED' => 'N'
		]
	]);
	while ($row = $res->fetch())
	{
		$block = new Block($row['ID']);
		self::processing($block);
		$block->save();
	}
}