Fix footer rendering

This commit is contained in:
Dennis Eichhorn 2017-07-25 19:09:46 +02:00
parent 5753a54746
commit 82766fc32e
3 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ echo $this->getData('nav')->render();
<td><?= $this->getHtml('Activity') ?>
<td><?= $this->getHtml('Created') ?>
<tfoot>
<tr><td colspan="5"><?= htmlspecialchars($footerView->render(), ENT_COMPAT, 'utf-8'); ?>
<tr><td colspan="5"><?= $footerView->render(); ?>
<tbody>
<?php $c = 0; foreach ($this->getData('list:elements') as $key => $value) : $c++;
$url = \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/admin/account/settings?{?}&id=' . $value->getId()); ?>

View File

@ -37,7 +37,7 @@ echo $this->getData('nav')->render(); ?>
<td><?= $this->getHtml('Children') ?>
<td><?= $this->getHtml('Members') ?>
<tfoot>
<tr><td colspan="5"><?= htmlspecialchars($footerView->render(), ENT_COMPAT, 'utf-8'); ?>
<tr><td colspan="5"><?= $footerView->render(); ?>
<tbody>
<?php $c = 0; foreach ($this->getData('list:elements') as $key => $value) : $c++;
$url = \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/admin/group/settings?{?}&id=' . $value->getId()); ?>

View File

@ -41,7 +41,7 @@ $footerView->setResults(count($modules));
<td><?= $this->getHtml('Status') ?>
<tfoot>
<tr>
<td colspan="4"><?= htmlspecialchars($footerView->render(), ENT_COMPAT, 'utf-8'); ?>
<td colspan="4"><?= $footerView->render(); ?>
<tbody>
<?php $count = 0; foreach ($modules as $key => $module) : $count++;
$url = \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/admin/module/settings?{?}&id=' . $module['name']['internal']); ?>