This commit is contained in:
Dennis Eichhorn 2017-05-30 18:21:27 +02:00
parent 48210e9dca
commit 42f1749a54
3 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@
"type": 2,
"subtype": 1,
"name": "Profiles",
"uri": "/{/lang}/backend/profile/list?{?}",
"uri": "{/base}/{/lang}/backend/profile/list?{?}",
"target": "self",
"icon": null,
"order": 10,
@ -19,7 +19,7 @@
"type": 3,
"subtype": 1,
"name": "List",
"uri": "/{/lang}/backend/profile/list?{?}",
"uri": "{/base}/{/lang}/backend/profile/list?{?}",
"target": "self",
"icon": null,
"order": 1,
@ -34,7 +34,7 @@
"type": 5,
"subtype": 1,
"name": "Profile",
"uri": "/{/lang}/backend/profile/single/front?{?}",
"uri": "{/base}/{/lang}/backend/profile/single/front?{?}",
"target": "self",
"icon": null,
"order": 3,
@ -49,7 +49,7 @@
"type": 5,
"subtype": 1,
"name": "Settings",
"uri": "/{/lang}/backend/profile/single/settings?{?}",
"uri": "{/base}/{/lang}/backend/profile/single/settings?{?}",
"target": "self",
"icon": null,
"order": 999,

View File

@ -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('{/base}/{/lang}/backend/profile/single?{?}&id=' . $account->getId()); ?>
<tr data-href="<?= $url; ?>">
<td><a href="<?= $url; ?>"><?= $account->getId(); ?></a>
<td><a href="<?= $url; ?>"><?= $account->getName3() . ' ' . $account->getName2() . ' ' . $account->getName1(); ?></a>

View File

@ -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('{/base}/{/lang}/backend/admin/group/settings?{?}&id=' . $value->getId()); ?>
<tr>
<td><a href="<?= $url; ?>"><?= $value->getId(); ?></a>
<td><a href="<?= $url; ?>"><?= $value->getNewestHistory()->getPosition(); ?></a>