• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/templateref.php
  • Класс: BitrixLandingTemplateRef
  • Вызов: TemplateRef::deleteArea
static function deleteArea($lid)
{
	$lid = intval($lid);

	$res = TemplateRefTable::getList(array(
		'filter' => array(
			'LANDING_ID' => $lid
		)
	));
	while ($row = $res->fetch())
	{
		TemplateRefTable::delete($row['ID']);
	}
}