aboutsummaryrefslogtreecommitdiff
path: root/search.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-06-19 11:06:45 +0000
committerCash Costello <cash.costello@gmail.com>2009-06-19 11:06:45 +0000
commite9ca89769c050bc88a32151012b773ca9c8246f0 (patch)
treeaaa69230087304fc8184fa3fafb4074f437ad0fb /search.php
parenteffbb14022495081f80acdc1d68ced09c1dd67c0 (diff)
downloadelgg-e9ca89769c050bc88a32151012b773ca9c8246f0.tar.gz
elgg-e9ca89769c050bc88a32151012b773ca9c8246f0.tar.bz2
finished phototag search page
Diffstat (limited to 'search.php')
-rw-r--r--search.php27
1 files changed, 23 insertions, 4 deletions
diff --git a/search.php b/search.php
index 2899d2c3f..b7b67295d 100644
--- a/search.php
+++ b/search.php
@@ -2,22 +2,41 @@
include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
- // Set context
set_context('search');
// Get user guid
$guid = get_input('guid');
$user = get_entity($guid);
-// if ($user)
-// $user->name;
+
+ if ($user)
+ $title = sprintf(elgg_echo('tidypics:usertag'), $user->name);
+ else
+ $title = "User does not exist";
- $title = $user->name;
+ // create main column
$body = elgg_view_title($title);
$body .= list_entities_from_relationship('phototag', $guid, false, 'object', 'image');
+
+ // Set up submenus
+ if (isloggedin()) {
+ add_submenu_item( elgg_echo("album:yours"),
+ $CONFIG->wwwroot . "pg/photos/owned/" . $_SESSION['user']->username,
+ 'tidypics-b' );
+ }
+ add_submenu_item( elgg_echo('album:all'),
+ $CONFIG->wwwroot . "pg/photos/world/",
+ 'tidypics-z');
+ add_submenu_item( elgg_echo('tidypics:mostrecent'),
+ $CONFIG->wwwroot . 'pg/photos/mostrecent',
+ 'tidypics-z');
+
+
+
$body = elgg_view_layout('two_column_left_sidebar','',$body);
+
page_draw($title,$body);