aboutsummaryrefslogtreecommitdiff
path: root/data/templates/default/profile.tpl.php
blob: 1e2003a068dbfcb53871a5336caa9f45ba9bfe9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
$this->includeTemplate($GLOBALS['top_include']);
?>

<dl id="profile">
<dt><?php echo T_('Username'); ?></dt>
    <dd><?php echo $user; ?></dd>
<?php
if ($userservice->isLoggedOn() && $currentUser->isAdmin()) {
?>
<dt><?php echo T_('Email'); ?></dt>
    <dd><?php echo filter($objectUser->getEmail()) ?></dd>    
<?php
}
if ($objectUser->getName() != "") {
?>
<dt><?php echo T_('Name'); ?></dt>
    <dd><?php echo filter($objectUser->getName()); ?></dd>
<?php
}
if ($objectUser->getHomepage() != "") {
?>
<dt><?php echo T_('Homepage'); ?></dt>
    <dd><a href="<?php echo filter($objectUser->getHomepage()); ?>"><?php echo filter($objectUser->getHomepage()); ?></a></dd>
<?php
}
?>
<dt><?php echo T_('Member Since'); ?></dt>
    <dd><?php echo date($GLOBALS['longdate'], strtotime($objectUser->getDatetime())); ?></dd>
<?php
if ($objectUser->getContent() != "") {
?>
<dt><?php echo T_('Description'); ?></dt>
    <dd><?php echo $objectUser->getContent(); ?></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
}
?>
<dt><?php echo T_('Bookmarks'); ?></dt>
    <dd><a href="<?php echo createURL('bookmarks', $user) ?>"><?php echo T_('Go to bookmarks')?> >></a></dd>
</dl>

<?php
$this->includeTemplate($GLOBALS['bottom_include']);
?>