aboutsummaryrefslogtreecommitdiff
path: root/mod
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-01 11:33:34 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-01 11:33:34 +0000
commitdac0ed3c7418ca73d583ce5efdda882a6a2a2a4c (patch)
tree8365ee965148c5aa11eb637b20a455a7e50f9342 /mod
parentafc7d0373d932afd9ead6d9e4c2c93f82ff8376c (diff)
downloadelgg-dac0ed3c7418ca73d583ce5efdda882a6a2a2a4c.tar.gz
elgg-dac0ed3c7418ca73d583ce5efdda882a6a2a2a4c.tar.bz2
Gallery view for users
git-svn-id: https://code.elgg.org/elgg/trunk@1225 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r--mod/profile/views/default/profile/gallery.php42
-rw-r--r--mod/profile/views/default/user/user.php6
2 files changed, 47 insertions, 1 deletions
diff --git a/mod/profile/views/default/profile/gallery.php b/mod/profile/views/default/profile/gallery.php
new file mode 100644
index 000000000..c76064adb
--- /dev/null
+++ b/mod/profile/views/default/profile/gallery.php
@@ -0,0 +1,42 @@
+<?php
+
+ /**
+ * Elgg user display (gallery)
+ *
+ * @package ElggProfile
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Ben Werdmuller <ben@curverider.co.uk>
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ *
+ * @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(
+ 'entity' => $vars['entity'],
+ 'size' => 'large',
+ )
+ );
+
+ $info .= "<p><b><a href=\"" . $vars['entity']->getUrl() . "\">" . $vars['entity']->name . "</a></b></p>";
+
+ $location = $vars['entity']->location;
+ if (!empty($location)) {
+ $info .= "<p>" . elgg_echo("profile:location") . ": " . elgg_view("output/tags",array('value' => $vars['entity']->location)) . "</p>";
+ }
+
+ // echo elgg_view_listing($icon, $info);
+ echo elgg_view('search/gallery_listing',array('icon' => $icon, 'info' => $info));
+
+?> \ No newline at end of file
diff --git a/mod/profile/views/default/user/user.php b/mod/profile/views/default/user/user.php
index a913ef3f8..5a2865cc1 100644
--- a/mod/profile/views/default/user/user.php
+++ b/mod/profile/views/default/user/user.php
@@ -15,7 +15,11 @@
if ($vars['full']) {
echo elgg_view("profile/userdetails",$vars);
} else {
- echo elgg_view("profile/listing",$vars);
+ if (get_input('search_viewtype') == "gallery") {
+ echo elgg_view('profile/gallery',$vars);
+ } else {
+ echo elgg_view("profile/listing",$vars);
+ }
}
?> \ No newline at end of file