blob: d5dbf1f2ad32670c1adbc3d26951c892e7cc7ea5 (
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
33
|
<?php
/**
* Tidypics View All Albums on Site
*
*/
include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
$limit = get_input("limit", 10);
$offset = get_input("offset", 0);
$tag = get_input("tag");
// Get the current page's owner
$page_owner = page_owner_entity();
if ($page_owner === false || is_null($page_owner)) {
$page_owner = $_SESSION['user'];
set_page_owner($_SESSION['guid']);
}
// Get objects
$area2 = elgg_view_title($title = elgg_echo('album:all'));
set_context('search');
set_input('search_viewtype', 'gallery');
$area2 .= list_entities('object','album', 0, 28);
set_context('photos');
$body = elgg_view_layout('two_column_left_sidebar', '', $area2);
// Finally draw the page
page_draw(sprintf(elgg_echo("album:all"),$_SESSION['user']->name), $body);
?>
|