blob: 6b17e12e8dfb99e2b8c53298e4b61380f7cfb020 (
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
34
|
<?php
/**
* tidypics photo gallery main page
*
*
*/
include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
//get the owner of the current page
$owner = page_owner_entity();
//if page owner cannot be found, forward to user's pictures instead (or world if not logged in)
if (is_null($owner->username) || empty($owner->username)) {
//if not logged in, see world pictures instead
if (!isloggedin()) forward('pg/photos/world');
forward('pg/photos/owned/' . $_SESSION['user']->username);
}
//set the title
$title = sprintf(elgg_echo('album:user'), "$owner->name");
$area2 = elgg_view_title($title);
// Get objects
set_context('search');
set_input('search_viewtype', 'gallery');
$area2 .= list_entities("object", "album", page_owner(), 10);
set_context('photos');
$body = elgg_view_layout('two_column_left_sidebar', '', $area2);
// Finally draw the page
page_draw($title, $body);
?>
|