• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/update/block/fontweight.php
  • Класс: BitrixLandingUpdateBlockFontWeight
  • Вызов: FontWeight::updateLanding
static function updateLanding(int $lid): void
{
	$res = BlockTable::getList(
		[
			'select' => [
				'ID', 'CONTENT'
			],
			'filter' => [
				'LID' => $lid,
			],
		]
	);
	while ($row = $res->fetch())
	{
		$block = new self($row['ID'], $row['CONTENT']);
		$block->update();
	}
}