diff options
Diffstat (limited to 'include/photos.php')
-rw-r--r-- | include/photos.php | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/include/photos.php b/include/photos.php index 84352ed32..7ccfd31c6 100644 --- a/include/photos.php +++ b/include/photos.php @@ -223,4 +223,28 @@ function photo_upload($channel, $observer, $args) { call_hooks('photo_post_end',$ret); return $ret; -}
\ No newline at end of file +} + + + + +function photos_albums_list($channel,$observer) { + + $channel_id = $channel['channel_id']; + $observer_xchan = (($observer) ? $observer['xchan_hash'] : ''); + + if(! perm_is_allowed($channel_id,$observer_xchan,'view_photos')) + return false; + + // FIXME - create a permissions SQL which works on arbitrary observers and channels, regardless of login or web status + + $sql_extra = permissions_sql($channel_id); + + $albums = q("SELECT distinct album from photo where uid = %d $sql_extra order by created desc", + intval($channel_id) + ); + + return $albums; + +} + |