• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/block.php
  • Класс: BitrixLandingBlock
  • Вызов: Block::resetContent
public function resetContent()
{
	$data = parent::getList([
		'select' => [
			'CONTENT'
		],
		'filter' => [
			'ID' => $this->id
		]
	])->fetch();
	if ($data)
	{
		$this->content = $data['CONTENT'];
	}
}