mirror of
https://github.com/Karaka-Management/oms-Profile.git
synced 2026-01-29 23:38:41 +00:00
Pass uri query parameter
This commit is contained in:
parent
0f510c38b9
commit
32822f9114
|
|
@ -40,7 +40,7 @@ $accounts = $this->getData('accounts');
|
|||
<td colspan="3"><?= $footerView->render(); ?>
|
||||
<tbody>
|
||||
<?php $count = 0; foreach($accounts as $key => $account) : $count++;
|
||||
$url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/profile/single?id=' . $account->getId()); ?>
|
||||
$url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/profile/single?{?}id=' . $account->getId()); ?>
|
||||
<tr>
|
||||
<td><a href="<?= $url; ?>"><?= $account->getId(); ?></a>
|
||||
<td><a href="<?= $url; ?>"><?= $account->getName3() . ' ' . $account->getName2() . ' ' . $account->getName1(); ?></a>
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ echo $this->getData('nav')->render();
|
|||
<tr><td colspan="4"><?= $footerView->render(); ?>
|
||||
<tbody>
|
||||
<?php $c = 0; foreach ([] as $key => $value) : $c++;
|
||||
$url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/admin/group/settings?id=' . $value->getId()); ?>
|
||||
$url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/admin/group/settings?{?}id=' . $value->getId()); ?>
|
||||
<tr>
|
||||
<td><a href="<?= $url; ?>"><?= $value->getId(); ?></a>
|
||||
<td><a href="<?= $url; ?>"><?= $value->getNewestHistory()->getPosition(); ?></a>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user