mirror of
https://github.com/Karaka-Management/oms-Auditor.git
synced 2026-01-28 21:28:42 +00:00
make tables tabable
This commit is contained in:
parent
2d4591dd81
commit
2b4aea1c8d
|
|
@ -32,7 +32,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<tbody>
|
||||
<?php $count = 0; foreach ($accounts as $key => $account) : ++$count;
|
||||
$url = \phpOMS\Uri\UriFactory::build('{/prefix}admin/audit/single?{?}&id=' . $account->getId()); ?>
|
||||
<tr data-href="<?= $url; ?>">
|
||||
<tr tabindex="0" data-href="<?= $url; ?>">
|
||||
<td><?= $this->printHtml($account->getId()); ?>
|
||||
<td><?= $this->printHtml(
|
||||
\sprintf('%3$s %2$s %1$s', $account->getName1(), $account->getName2(), $account->getName3())
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<tbody>
|
||||
<?php $count = 0; foreach ($audits as $key => $audit) : ++$count;
|
||||
$url = \phpOMS\Uri\UriFactory::build('{/prefix}admin/audit/single?{?}&id=' . $audit->getId()); ?>
|
||||
<tr data-href="<?= $url; ?>">
|
||||
<tr tabindex="0" data-href="<?= $url; ?>">
|
||||
<td><?= $audit->getId(); ?>
|
||||
<td><?= $this->printHtml($audit->getModule()); ?>
|
||||
<td><?= $audit->getType(); ?>
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<tbody>
|
||||
<?php $count = 0; foreach ($modules as $key => $module) : ++$count;
|
||||
$url = \phpOMS\Uri\UriFactory::build('{/prefix}admin/audit/single?{?}&id=' . $module['name']['id']); ?>
|
||||
<tr data-href="<?= $url; ?>">
|
||||
<tr tabindex="0" data-href="<?= $url; ?>">
|
||||
<td><?= $this->printHtml($module['name']['id']); ?>
|
||||
<td><?= $this->printHtml($module['name']['external']); ?>
|
||||
<?php endforeach; ?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user