• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/note/source.php
  • Класс: BitrixLandingNoteSource
  • Вызов: Source::getLastCreatedSite
static function getLastCreatedSite(): int
{
	$res = Site::getList([
		'select' => [
			'ID'
		],
		'filter' => [
			'CREATED_BY_ID' => Manager::getUserId()
		],
		'order' => [
			'ID' => 'desc'
		]
	]);
	while ($row = $res->fetch())
	{
		$check = Rights::hasAccessForSite(
			$row['ID'],
			Rights::ACCESS_TYPES['edit']
		);
		if ($check)
		{
			return $row['ID'];
		}
	}

	return 0;
}