aboutsummaryrefslogtreecommitdiff
path: root/views/default/profile
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/profile')
-rw-r--r--views/default/profile/details.php41
-rw-r--r--views/default/profile/icon.php17
2 files changed, 17 insertions, 41 deletions
diff --git a/views/default/profile/details.php b/views/default/profile/details.php
deleted file mode 100644
index 6ad73688f..000000000
--- a/views/default/profile/details.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-/**
- * Elgg user display (details)
- * @uses $vars['entity'] The user entity
- */
-
-$user = elgg_get_page_owner_entity();
-
-$profile_fields = elgg_get_config('profile_fields');
-
-echo "<dl class=\"elgg-profile\">";
-if (is_array($profile_fields) && sizeof($profile_fields) > 0) {
- foreach ($profile_fields as $shortname => $valtype) {
- if ($shortname == "description") {
- // skip about me and put at bottom
- continue;
- }
- $value = $user->$shortname;
- if (!empty($value)) {
-?>
- <dt><?php echo elgg_echo("profile:{$shortname}"); ?></dt>
- <dd><?php echo elgg_view("output/{$valtype}", array('value' => $user->$shortname)); ?></dd>
-<?php
- }
- }
-}
-
-if (!elgg_get_config('profile_custom_fields')) {
- if ($user->isBanned()) {
- echo "</dl><p class='profile-banned-user'>";
- echo elgg_echo('banned');
- echo "</p>";
- } else {
- if ($user->description) {
- echo "<dt>" . elgg_echo("profile:aboutme") . "</dt>";
- echo "<dd>";
- echo elgg_view('output/longtext', array('value' => $user->description));
- echo "</dd></dl>";
- }
- }
-} \ No newline at end of file
diff --git a/views/default/profile/icon.php b/views/default/profile/icon.php
new file mode 100644
index 000000000..5f06cfd54
--- /dev/null
+++ b/views/default/profile/icon.php
@@ -0,0 +1,17 @@
+<?php
+/**
+ * Elgg profile icon
+ *
+ * @deprecated 1.8 use elgg_view_entity_icon()
+ *
+ * @uses $vars['entity'] The user entity. If none specified, the current user is assumed.
+ * @uses $vars['size'] The size - small, medium or large. If none specified, medium is assumed.
+ * @uses $vars['override']
+ * @uses $vars['js']
+ */
+elgg_deprecated_notice('The profile/icon view was deprecated. Use elgg_view_entity_icon()', 1.8);
+
+$override = elgg_extract('override', $vars, false);
+$vars['use_hover'] = !$override;
+
+echo elgg_view('icon/user/default', $vars);