1: <?php
2:
3: 4: 5: 6:
7: function printDownloadLink($file, $linktext = NULL) {
8: deprecated_functions::notify(gettext('use printDownloadURL()'));
9: printDownloadURL($file, $linktext);
10: }
11:
12: 13: 14: 15:
16: function getDownloadLink($file) {
17: deprecated_functions::notify(gettext('use getDownloadURL()'));
18: return getDownloadURL($file, $linktext);
19: }
20:
21: 22: 23: 24:
25: function printDownloadLinkAlbumZip($file, $linktext = NULL) {
26: deprecated_functions::notify(gettext('use printDownloadAlbumZipURL()'));
27: printDownloadURL($file, $linktext);
28: }
29:
30: ?>
31: