1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?php
/**
* Tidypics Friends Albums Listing
*
* List all the albums of someone's friends
*/
include_once dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php";
$username = get_input('username');
// if no username, redirect to world photo albums
if (!$username) {
forward('pg/photos/world');
}
// setup title
$user = get_user_by_username($username);
if (!$user) {
forward('pg/photos/world');
}
if ($user->guid == get_loggedin_userid())
$title = elgg_echo('album:yours:friends');
else
$title = sprintf(elgg_echo('album:friends'), $user->name);
$area2 = elgg_view_title($title);
$albums = get_user_friends_objects($user->guid, 'album', 12);
// get html for viewing list of photo albums
set_context('search');
set_input('search_viewtype', 'gallery'); // need to force gallery view
$content = tp_view_entity_list($albums, count($albums), 0, 12, false, false, true);
$area2 = elgg_view('tidypics/content_wrapper', array('title' => $title, 'content' => $content,));
$body = elgg_view_layout('two_column_left_sidebar', '', $area2);
page_draw($title, $body);
?>
|