1: <?php
2:
3: 4: 5:
6:
7: 8: 9: 10:
11: function printImageRating($object = NULL) {
12: deprecated_functions::notify(gettext('Use printRating().'));
13: global $_zp_current_image;
14: if (is_null($object))
15: $object = $_zp_current_image;
16: printRating(3, $object);
17: }
18:
19: 20: 21: 22:
23: function printAlbumRating($object = NULL) {
24: deprecated_functions::notify(gettext('Use printRating().'));
25: global $_zp_current_album;
26: if (is_null($object))
27: $object = $_zp_current_album;
28: printRating(3, $object);
29: }
30:
31: ?>