diff --git a/Admin/Install/Navigation.install.json b/Admin/Install/Navigation.install.json
index db121e1..c2a3262 100755
--- a/Admin/Install/Navigation.install.json
+++ b/Admin/Install/Navigation.install.json
@@ -5,7 +5,7 @@
"type": 2,
"subtype": 1,
"name": "Helper",
- "uri": "{/prefix}helper/list",
+ "uri": "{/lang}/{/app}/helper/list",
"target": "self",
"icon": null,
"order": 60,
@@ -19,7 +19,7 @@
"type": 3,
"subtype": 1,
"name": "List",
- "uri": "{/prefix}helper/list",
+ "uri": "{/lang}/{/app}/helper/list",
"target": "self",
"icon": null,
"order": 1,
@@ -34,7 +34,7 @@
"type": 3,
"subtype": 5,
"name": "CreateReport",
- "uri": "{/prefix}helper/report/create?{?}",
+ "uri": "{/lang}/{/app}/helper/report/create?{?}",
"target": "self",
"icon": null,
"order": 5,
@@ -49,7 +49,7 @@
"type": 3,
"subtype": 5,
"name": "CreateTemplate",
- "uri": "{/prefix}helper/template/create?{?}",
+ "uri": "{/lang}/{/app}/helper/template/create?{?}",
"target": "self",
"icon": null,
"order": 10,
diff --git a/Theme/Backend/helper-list.tpl.php b/Theme/Backend/helper-list.tpl.php
index 38fa967..17fc5f4 100755
--- a/Theme/Backend/helper-list.tpl.php
+++ b/Theme/Backend/helper-list.tpl.php
@@ -29,16 +29,16 @@ $accountDir = $account->getId() . ' ' . $account->login;
$collections = $this->getData('collections');
$mediaPath = \urldecode($this->getData('path') ?? '/');
-$previous = empty($templates) ? 'helper/list' : 'helper/list?{?}&id=' . \reset($templates)->getId() . '&ptype=p';
-$next = empty($templates) ? 'helper/list' : 'helper/list?{?}&id=' . \end($templates)->getId() . '&ptype=n';
+$previous = empty($templates) ? '{/lang}/{/app}/helper/list' : '{/lang}/{/app}/helper/list?{?}&id=' . \reset($templates)->getId() . '&ptype=p';
+$next = empty($templates) ? '{/lang}/{/app}/helper/list' : 'helper/list?{?}&id=' . \end($templates)->getId() . '&ptype=n';
echo $this->getData('nav')->render(); ?>
- -
-
- /
+ -
+
- /
getData('nav')->render(); ?>
$subPath .= '/' . $paths[$i];
- $url = UriFactory::build('helper/list?path=' . $subPath);
+ $url = UriFactory::build('{/lang}/{/app}/helper/list?path=' . $subPath);
?>
- >= $this->printHtml($paths[$i]); ?>
@@ -127,7 +127,7 @@ echo $this->getData('nav')->render(); ?>
-
+
|
|
@@ -139,7 +139,7 @@ echo $this->getData('nav')->render(); ?>
|
$value) : ++$count;
- $url = UriFactory::build('helper/list?path=' . \rtrim($value->getVirtualPath(), '/') . '/' . $value->name);
+ $url = UriFactory::build('{/lang}/{/app}/helper/list?path=' . \rtrim($value->getVirtualPath(), '/') . '/' . $value->name);
?>
|
|