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

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

	return Block::isContains($blockId, $needed);
}