diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 14:46:48 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 14:46:48 -0300 |
commit | 5041c6c48153453ed597206d08eeff37cf20e676 (patch) | |
tree | b25f495baf01202485f05b5245625f28558c6135 /views/default/profile | |
download | elgg-5041c6c48153453ed597206d08eeff37cf20e676.tar.gz elgg-5041c6c48153453ed597206d08eeff37cf20e676.tar.bz2 |
Squashed 'mod/cool_theme/' content from commit a26f7df
git-subtree-dir: mod/cool_theme
git-subtree-split: a26f7df43a266f7d1ff04847da330d15f6041e9b
Diffstat (limited to 'views/default/profile')
-rw-r--r-- | views/default/profile/details.php | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/views/default/profile/details.php b/views/default/profile/details.php new file mode 100644 index 000000000..6ad73688f --- /dev/null +++ b/views/default/profile/details.php @@ -0,0 +1,41 @@ +<?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 |