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

View File

@ -5,7 +5,7 @@
"type": 2,
"subtype": 1,
"name": "Checklist",
"uri": "/{/lang}/backend/checklist/list?{?}",
"uri": "{/base}/{/lang}/backend/checklist/list?{?}",
"target": "self",
"icon": null,
"order": 65,
@ -19,7 +19,7 @@
"type": 3,
"subtype": 1,
"name": "List",
"uri": "/{/lang}/backend/checklist/list?{?}",
"uri": "{/base}/{/lang}/backend/checklist/list?{?}",
"target": "self",
"icon": null,
"order": 1,
@ -34,7 +34,7 @@
"type": 3,
"subtype": 5,
"name": "Templates",
"uri": "/{/lang}/backend/checklist/template/list?{?}",
"uri": "{/base}/{/lang}/backend/checklist/template/list?{?}",
"target": "self",
"icon": null,
"order": 5,
@ -49,7 +49,7 @@
"type": 3,
"subtype": 5,
"name": "CreateTemplate",
"uri": "/{/lang}/backend/checklist/template/create?{?}",
"uri": "{/base}/{/lang}/backend/checklist/template/create?{?}",
"target": "self",
"icon": null,
"order": 15,

View File

@ -42,7 +42,7 @@ echo $this->getData('nav')->render(); ?>
<tr><td colspan="5"><?= $footerView->render(); ?>
<tbody>
<?php $c = 0; foreach ([] as $key => $value) : $c++;
$url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/checklist/single?{?}&id=' . $value->getId()); ?>
$url = \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/checklist/single?{?}&id=' . $value->getId()); ?>
<tr>
<td><a href="<?= $url; ?>"><?= $value->getId(); ?></a>
<td><a href="<?= $url; ?>"><?= $value->getName(); ?></a>

View File

@ -42,7 +42,7 @@ echo $this->getData('nav')->render(); ?>
<tr><td colspan="5"><?= $footerView->render(); ?>
<tbody>
<?php $c = 0; foreach ([] as $key => $value) : $c++;
$url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/checklist/single?{?}&id=' . $value->getId()); ?>
$url = \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/checklist/single?{?}&id=' . $value->getId()); ?>
<tr>
<td><a href="<?= $url; ?>"><?= $value->getId(); ?></a>
<td><a href="<?= $url; ?>"><?= $value->getName(); ?></a>