mirror of
https://github.com/Karaka-Management/oms-Auditor.git
synced 2026-02-15 21:18:41 +00:00
cleanup
This commit is contained in:
parent
9df3774c31
commit
e388efcd3a
|
|
@ -19,6 +19,7 @@ return ['Auditor' => [
|
||||||
'By' => 'By',
|
'By' => 'By',
|
||||||
'Content' => 'Content',
|
'Content' => 'Content',
|
||||||
'Date' => 'Date',
|
'Date' => 'Date',
|
||||||
|
'Email' => 'Email',
|
||||||
'Module' => 'Module',
|
'Module' => 'Module',
|
||||||
'Name' => 'Name',
|
'Name' => 'Name',
|
||||||
'New' => 'New',
|
'New' => 'New',
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?= $this->getHtml('ID', '0', '0'); ?>
|
<td><?= $this->getHtml('ID', '0', '0'); ?>
|
||||||
<td class="wf-100"><?= $this->getHtml('Name') ?>
|
<td class="wf-100"><?= $this->getHtml('Name') ?>
|
||||||
|
<td class="wf-100"><?= $this->getHtml('Email') ?>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2">
|
<td colspan="2">
|
||||||
|
|
@ -36,7 +37,10 @@ echo $this->getData('nav')->render(); ?>
|
||||||
$url = \phpOMS\Uri\UriFactory::build('{/prefix}admin/audit/single?{?}&id=' . $account->getId()); ?>
|
$url = \phpOMS\Uri\UriFactory::build('{/prefix}admin/audit/single?{?}&id=' . $account->getId()); ?>
|
||||||
<tr data-href="<?= $url; ?>">
|
<tr data-href="<?= $url; ?>">
|
||||||
<td><?= $this->printHtml($account->getId()); ?>
|
<td><?= $this->printHtml($account->getId()); ?>
|
||||||
<td><?= $this->printHtml($account->getName1()); ?>
|
<td><?= $this->printHtml(
|
||||||
|
\sprintf('%3$s %2$s %1$s', $account->getName1(), $account->getName2(), $account->getName3())
|
||||||
|
); ?>
|
||||||
|
<td><?= $this->printHtml($account->getEmail()); ?>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<?php if ($count === 0) : ?>
|
<?php if ($count === 0) : ?>
|
||||||
<tr><td colspan="2" class="empty"><?= $this->getHtml('Empty', '0', '0'); ?>
|
<tr><td colspan="2" class="empty"><?= $this->getHtml('Empty', '0', '0'); ?>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user