summaryrefslogtreecommitdiffstatshomepage
path: root/data/templates/sscuttlizr/profile.tpl.php
blob: 60bbae1e75f18fce8bc3bebe0dffd8f3938e67ee (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
75
76
77
78
79
80
<?php
$this->includeTemplate($GLOBALS['top_include']);
?>

<div class="container-full">
	<div class="row">
		<div class="col-12 col-xs-12 col-sm-12 col-lg-12">
			<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>
		</div>
	</div>
</div>

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