diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2007-12-12 16:29:16 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2007-12-12 16:29:16 +0000 |
commit | d582054c77b22daeb08d2bff17794b9a69a20dd4 (patch) | |
tree | d6e7cef8639da6f573cd0b21a5316abf5af24fac /templates/profile.tpl.php | |
download | semanticscuttle-d582054c77b22daeb08d2bff17794b9a69a20dd4.tar.gz semanticscuttle-d582054c77b22daeb08d2bff17794b9a69a20dd4.tar.bz2 |
import of scuttle 0.7.2
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@1 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/profile.tpl.php')
-rw-r--r-- | templates/profile.tpl.php | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/templates/profile.tpl.php b/templates/profile.tpl.php new file mode 100644 index 0000000..e9ff91b --- /dev/null +++ b/templates/profile.tpl.php @@ -0,0 +1,67 @@ +<?php +$userservice =& ServiceFactory::getServiceInstance('UserService'); +$this->includeTemplate($GLOBALS['top_include']); +?> + +<dl id="profile"> +<dt><?php echo T_('Username'); ?></dt> + <dd><?php echo $user; ?></dd> +<?php +if ($row['name'] != "") { +?> +<dt><?php echo T_('Name'); ?></dt> + <dd><?php echo $row['name']; ?></dd> +<?php +} +if ($row['homepage'] != "") { +?> +<dt><?php echo T_('Homepage'); ?></dt> + <dd><a href="<?php echo $row['homepage']; ?>"><?php echo $row['homepage']; ?></a></dd> +<?php +} +?> +<dt><?php echo T_('Member Since'); ?></dt> + <dd><?php echo date($GLOBALS['longdate'], strtotime($row['uDatetime'])); ?></dd> +<?php +if ($row['uContent'] != "") { +?> +<dt><?php echo T_('Description'); ?></dt> + <dd><?php echo $row['uContent']; ?></dd> +<?php +} +$watching = $userservice->getWatchNames($userid); +if ($watching) { +?> + <dt><?php echo T_('Watching'); ?></dt> + <dd> + <?php + $list = ''; + foreach($watching as $watchuser) { + $list .= '<a href="'. createURL('bookmarks', $watchuser) .'">'. $watchuser .'</a>, '; + } + echo substr($list, 0, -2); + ?> + </dd> +<?php +} +$watchnames = $userservice->getWatchNames($userid, true); +if ($watchnames) { +?> + <dt><?php echo T_('Watched By'); ?></dt> + <dd> + <?php + $list = ''; + foreach($watchnames as $watchuser) { + $list .= '<a href="'. createURL('bookmarks', $watchuser) .'">'. $watchuser .'</a>, '; + } + echo substr($list, 0, -2); + ?> + </dd> +<?php +} +?> +</dl> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?>
\ No newline at end of file |