As of Emacs 24, an analog of the old multi-hop syntax has been layered on top of the modern tramp-default-proxies-alist approach, meaning that you can once again perform multi-hops without any prior configuration. For details, see:
C-hig (tramp) Ad-hoc multi-hops RET
With the new syntax, each 'hop' is separated by |. In this instance, it would look like:
C-xC-f /ssh:user@server|sudo:server:/home/user/file RET
As this still uses the proxy mechanism underneath,
C-hv tramp-default-proxies-alist RET
should now include the value:
("server" "root" "/ssh:user@server:")
Meaning that the proxy /ssh:user@server: is going to be used whenever you request a file as root@server.
Something important to note here is that you usually don't need to specify server in the sudo:server part -- and indeed sudo:: will still work in a sense -- however if you do that then the dynamic proxy created will contain the hostname you originated from rather than the host you connected to, so I would recommend being explicit; otherwise it will not only look confusing (as the wrong host will be displayed in filenames), but it will also mean that subsequent attempts to use sudo:: on the localhost will be proxied to this remote server!