aboutsummaryrefslogtreecommitdiffstats
path: root/template/admin/html/user/item.php
blob: 439916ec7152f30626b47e9c830cc62e6e7fa0b3 (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
<li class="item-list-li user">
	<header>
		<h2><i class="fa fa-user"></i><?=escapeHTML($USER['ATTR']['FULLNAME'])?><span>#<?=$USER['ID']?></span></h2>
		<div>
			<time class="brackets" datetime="<?=$USER['ATTR']['TIME_INSERT']?>"><?=parseDatetime($USER['ATTR']['TIME_INSERT'], $Language->template('date_format'))?></time>
		</div>
	</header>
	<blockquote cite="<?=$USER['URL']?>">
		<p><?=excerpt($USER['BODY']['HTML'])?></p>
	</blockquote>

	<?php if($USER['ARGV']): ?>
		<ul class="arguments">
			<?php foreach($USER['ARGV'] as $argument => $value): ?>
				<li><strong><?=$argument?></strong>: <span class="blue"><?=escapeHTML($value)?></span></li>
			<?php endforeach; ?>
		</ul>
	<?php endif; ?>

	<footer>
		<ul>
			<li><a href="<?=$USER['URL']?>" target="_blank" title="<?=$Language->text('select_user')?>"><i class="fa fa-external-link"></i></a></li>
			<li><a href="<?=Application::getAdminURL("user/update.php?id={$USER['ID']}")?>" title="<?=$Language->text('update_user')?>"><i class="fa fa-pencil-square-o"></i></a></li>
			<li><a href="<?=Application::getAdminURL("user/delete.php?id={$USER['ID']}")?>" title="<?=$Language->text('delete_user')?>"><i class="fa fa-trash-o"></i></a></li>
		</ul>
	</footer>
</li>