From 6bc7f1598dcb73d9140dda024713a3ea5b3e53ec Mon Sep 17 00:00:00 2001 From: dave Date: Sun, 29 Jun 2008 10:54:55 +0000 Subject: changed the friends list view order git-svn-id: https://code.elgg.org/elgg/trunk@1202 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/profile/views/default/profile/listing.php | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'mod/profile') diff --git a/mod/profile/views/default/profile/listing.php b/mod/profile/views/default/profile/listing.php index 6ec180051..09a944acf 100644 --- a/mod/profile/views/default/profile/listing.php +++ b/mod/profile/views/default/profile/listing.php @@ -11,6 +11,16 @@ * * @uses $vars['entity'] The user entity */ + + //grab the users status message with metadata 'state' set to current if it exists + if($get_status = get_entities_from_metadata("state", "current", "object", "status", $vars['entity']->guid)){ + + foreach($get_status as $s) { + $info = elgg_view("status/friends_view", array('entity' => $s)); + } + + } + $icon = elgg_view( "profile/icon", array( @@ -19,22 +29,13 @@ ) ); - $info = "

getUrl() . "\">" . $vars['entity']->name . "

"; + $info .= "

getUrl() . "\">" . $vars['entity']->name . "

"; $location = $vars['entity']->location; if (!empty($location)) { $info .= "

" . elgg_echo("profile:location") . ": " . elgg_view("output/tags",array('value' => $vars['entity']->location)) . "

"; } - //grab the users status message with metadata 'state' set to current if one exists - if($get_status = get_entities_from_metadata("state", "current", "object", "status", $vars['entity']->guid)){ - - foreach($get_status as $s) { - $info .= elgg_view("status/friends_view", array('entity' => $s)); - } - - } - echo elgg_view_listing($icon, $info); ?> \ No newline at end of file -- cgit v1.2.3