aboutsummaryrefslogtreecommitdiff
path: root/mod/tabbed_profile/views/default/profile/listing.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/tabbed_profile/views/default/profile/listing.php')
-rw-r--r--mod/tabbed_profile/views/default/profile/listing.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/mod/tabbed_profile/views/default/profile/listing.php b/mod/tabbed_profile/views/default/profile/listing.php
new file mode 100644
index 000000000..0622264b8
--- /dev/null
+++ b/mod/tabbed_profile/views/default/profile/listing.php
@@ -0,0 +1,49 @@
+<?php
+/**
+ * Elgg user display (small)
+ *
+ * @package ElggProfile
+ *
+ * @uses $vars['entity'] The user entity
+ */
+
+$icon = elgg_view(
+ "profile/icon", array(
+ 'entity' => $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 .= "<p class='entity-title user'><a href=\"" . $vars['entity']->getUrl() . "\" $rel>" . $vars['entity']->name . "</a></p>";
+ $location = $vars['entity']->location;
+ if (!empty($location)) {
+ $info .= "<p class='entity-subtext user'>" . elgg_echo("profile:location") . ": " . elgg_view("output/tags",array('value' => $vars['entity']->location)) . "</p>";
+ }
+ //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 .= "<p class='entity-title user banned'>";
+ if (isadminloggedin())
+ $info .= "<a href=\"" . $vars['entity']->getUrl() . "\">";
+ $info .= $vars['entity']->name;
+ if (isadminloggedin())
+ $info .= "</a>";
+ $info .= "</p>";
+}
+
+echo elgg_view_listing($icon, $info);