Linking sidebar wigets to a specific user in gallery2 ?
eliz82
Joined: 2009-11-06
Posts: 71 |
![]() |
Hello however my Gallery 2 is a multiuser gallery (like 30 users and growing). is that any way to show the newest images only for a specific user ? |
|
eliz82
Joined: 2009-11-06
Posts: 71 |
![]() |
i have found a different solution example of my code with (a G2 gallery included in phpBB forum): <?php $ch = curl_init(); $timeout = 5; // set to zero for no timeout curl_setopt ($ch, CURLOPT_URL, 'http://www.site.com/forum/gallery2.php?g2_view=imageblock.External&g2_exactSize=100&g2_blocks=recentImage|recentImage&g2_itemId=5812&g2_linkTarget=_blank'); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $file_contents = curl_exec($ch); curl_close($ch); echo $file_contents; ?> this code show the last 2 images in 100px of a specific user. the "5812" from the link is the number of the main album of that user. |
|