35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<?php
|
|
|
|
|
|
// No direct access.
|
|
defined('_JEXEC') or die;
|
|
|
|
?>
|
|
|
|
<table width='100%' class='table table-stiped, table-hover'>
|
|
<thead>
|
|
<tr>
|
|
<th width='15%'>Benutzername</th>
|
|
<th width='20%'>Name</th>
|
|
<th width='30%'>Ort</th>
|
|
<th width='30%'>E-Mail</th>
|
|
<th width='5%'></th>
|
|
<th width='5%'>id</th>
|
|
</tr>
|
|
</thead>
|
|
<?php foreach($this->objects as $user): ?>
|
|
<?php $link = str_replace('__ID__', $user->getId(), $this->changeUrl); ?>
|
|
<tr>
|
|
<td><a href='<?php echo $link; ?>'><?php echo htmlentities($user->getUserName()); ?></a></td>
|
|
<td><a href='<?php echo $link; ?>'><?php echo htmlentities($user->getName()); ?></a></td>
|
|
<td><?php echo htmlentities($user->getCity()); ?></td>
|
|
<td><a href='mailto:<?php echo htmlentities($user->getMail()); ?>'><?php echo htmlentities($user->getMail()); ?></a></td>
|
|
<td><a href='<?php echo str_replace('__ID__', $user->getId(), $this->delUrl); ?>'><span class='icon-delete'></span>Löschen</a></td>
|
|
<td><?php echo htmlentities($user->getId()); ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
|
|
<div><a href='<?php echo $this->addUrl; ?>'><span class='icon-new'></span>Neuen Benutzer anlegen</a></div>
|
|
|