• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/landing/view.php
  • Класс: BitrixLandingLandingView
  • Вызов: View::incViewsPage
static function incViewsPage($lid)
{
	$lid = (int)$lid;
	$res = ViewTable::getList([
		'select' => [
			'SUM'
		],
		'filter' => [
			'LID' => $lid
		],
		'runtime' => [
			new EntityExpressionField(
				'SUM', 'SUM(%s)', ['VIEWS']
			)
		]
	]);
	if ($row = $res->fetch())
	{
		Rights::setOff();
		Landing::update($lid, [
			'VIEWS' => $row['SUM'],
			'DATE_MODIFY' => false
		]);
		Rights::setOn();
	}
}