Building a post report manager hack where the admin/mod can view the content from within the admin/mod CP. If I'm getting a picture from album I can do it because I have the album ID which is used with fetch_albuminfo() to satisfy the $displaytypeinfo parameter of the fetch_picture_url() method. For example:
PHP Code:
$picture_id = 1;
$album_id = 2;
$picture_info_array = fetch_pictureinfo($picture_id);
$display_info_array = fetch_albuminfo($album_id);
echo("<img src=\"" . fetch_picture_url($picture_info_array, $display_info_array) . "\" />");
but when a social group picture is reported I don't have the album ID only the social group ID but I can't find the equivalent of fetch_albuminfo