blob: 4599f820911822d738eccb6124e1547448101c32 (
plain)
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
|
<?php
/**
* Tidypics View All Albums on Site
*
*/
include_once dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php";
// set page owner to logged in user
if (isloggedin()) {
set_page_owner(get_loggedin_userid());
}
$num_albums = 16;
$title = elgg_echo('album:all');
$area2 = elgg_view_title($title);
set_context('search');
set_input('search_viewtype', 'gallery');
$content .= elgg_list_entities(array(
'type' => 'object',
'subtype' => 'album',
'limit' => $num_albums,
));
set_context('photos');
$area2 = elgg_view('tidypics/content_wrapper', array('title' => $title, 'content' => $content,));
$body = elgg_view_layout('two_column_left_sidebar', '', $area2);
page_draw($title, $body);
|