1: <?php
2:
3: /**
4: * @deprecated
5: * @since 1.4.6
6: */
7: function getCommentsAllowed() {
8: global $_zp_current_image, $_zp_current_album;
9: deprecated_functions::notify(gettext("use the object’s getCommentsAllowed() method"));
10: if (in_context(ZP_IMAGE)) {
11: if (is_null($_zp_current_image))
12: return false;
13: return $_zp_current_image->getCommentsAllowed();
14: } else {
15: return $_zp_current_album->getCommentsAllowed();
16: }
17: }
18: