• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/controller/diskfile.php
  • Класс: BitrixLandingControllerDiskFile
  • Вызов: DiskFile::landingContainsFile
private function landingContainsFile(string $scope, int $landingId, int $fileId): bool
{
	if (Type::isPublicScope($scope))
	{
		return false;
	}

	Type::setScope($scope);
	$needed = ConnectorDisk::FILE_PREFIX_HREF . $fileId;

	return Block::isContains($landingId, $needed, true);
}