From 3c8180095c81d4eee82ed7088b378161cee29298 Mon Sep 17 00:00:00 2001 From: cash Date: Wed, 29 Dec 2010 18:37:18 +0000 Subject: Fixes #2481 - moving tabbed_profile plugin into the plugins repo from core - it needs some updates to reflect changes to the core profile plugin git-svn-id: http://code.elgg.org/elgg/trunk@7751 36083f99-b078-4883-b0ff-0f9b5a30f544 --- .../views/default/profile/listing.php | 49 ---------------------- 1 file changed, 49 deletions(-) delete mode 100644 mod/tabbed_profile/views/default/profile/listing.php (limited to 'mod/tabbed_profile/views/default/profile/listing.php') diff --git a/mod/tabbed_profile/views/default/profile/listing.php b/mod/tabbed_profile/views/default/profile/listing.php deleted file mode 100644 index 489b1d50e..000000000 --- a/mod/tabbed_profile/views/default/profile/listing.php +++ /dev/null @@ -1,49 +0,0 @@ - $vars['entity'], - 'size' => 'tiny', - ) -); - -$banned = $vars['entity']->isBanned(); - -// Simple XFN -$rel_type = ""; -if (get_loggedin_userid() == $vars['entity']->guid) { - $rel_type = 'me'; -} elseif (check_entity_relationship(get_loggedin_userid(), 'friend', $vars['entity']->guid)) { - $rel_type = 'friend'; -} - -if ($rel_type) { - $rel = "rel=\"$rel_type\""; -} - -if (!$banned) { - $info .= "

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

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

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

"; - } - //create a view that a status plugin could extend - in the default case, this is the wire - $info .= elgg_view("profile/status", array("entity" => $vars['entity'])); -}else{ - $info .= "

"; - if (isadminloggedin()) - $info .= "getUrl() . "\">"; - $info .= $vars['entity']->name; - if (isadminloggedin()) - $info .= ""; - $info .= "

"; -} - -echo elgg_view_image_block($icon, $info); -- cgit v1.2.3