diff --git a/Admin/Install/Navigation.install.json b/Admin/Install/Navigation.install.json
index fc07128..76c0fd6 100755
--- a/Admin/Install/Navigation.install.json
+++ b/Admin/Install/Navigation.install.json
@@ -5,7 +5,7 @@
"type": 2,
"subtype": 1,
"name": "Editor",
- "uri": "{/prefix}editor/list",
+ "uri": "{/lang}/{/app}/editor/list",
"target": "self",
"icon": null,
"order": 75,
@@ -19,7 +19,7 @@
"type": 3,
"subtype": 1,
"name": "List",
- "uri": "{/prefix}editor/list",
+ "uri": "{/lang}/{/app}/editor/list",
"target": "self",
"icon": null,
"order": 1,
@@ -34,7 +34,7 @@
"type": 3,
"subtype": 5,
"name": "Create",
- "uri": "{/prefix}editor/create?{?}",
+ "uri": "{/lang}/{/app}/editor/create?{?}",
"target": "self",
"icon": null,
"order": 15,
diff --git a/Theme/Backend/editor-list.tpl.php b/Theme/Backend/editor-list.tpl.php
index bafd5ca..b868da3 100755
--- a/Theme/Backend/editor-list.tpl.php
+++ b/Theme/Backend/editor-list.tpl.php
@@ -27,8 +27,8 @@ $account = $this->getData('account');
$accountDir = $account->getId() . ' ' . $account->login;
-$previous = empty($docs) ? 'editor/list' : 'editor/list?{?}&id=' . \reset($docs)->getId() . '&ptype=p';
-$next = empty($docs) ? 'editor/list' : 'editor/list?{?}&id=' . \end($docs)->getId() . '&ptype=n';
+$previous = empty($docs) ? '{/lang}/{/app}/editor/list' : '{/lang}/{/app}/editor/list?{?}&id=' . \reset($docs)->getId() . '&ptype=p';
+$next = empty($docs) ? '{/lang}/{/app}/editor/list' : '{/lang}/{/app}/editor/list?{?}&id=' . \end($docs)->getId() . '&ptype=n';
$docs = $this->getData('docs');
@@ -37,8 +37,8 @@ echo $this->getData('nav')->render(); ?>
- -
-
- /
+ -
+
- /
getData('nav')->render(); ?>
$subPath .= '/' . $paths[$i];
- $url = UriFactory::build('editor/list?path=' . $subPath);
+ $url = UriFactory::build('{/lang}/{/app}/editor/list?path=' . $subPath);
?>
- >= $this->printHtml($paths[$i]); ?>
@@ -115,7 +115,7 @@ echo $this->getData('nav')->render(); ?>
-
+
|
|
@@ -125,7 +125,7 @@ echo $this->getData('nav')->render(); ?>
|
$value) : ++$count;
- $url = UriFactory::build('editor/list?path=' . \rtrim($value->getVirtualPath(), '/') . '/' . $value->name);
+ $url = UriFactory::build('{/lang}/{/app}/editor/list?path=' . \rtrim($value->getVirtualPath(), '/') . '/' . $value->name);
?>
|
|
|
| = $this->printHtml($value->name); ?>
- | = $this->printHtml($value->createdBy->name1); ?>
+ | = $this->printHtml($value->createdBy->name1); ?>
| = $this->printHtml($value->createdAt->format('Y-m-d')); ?>
$value) : ++$count;
- $url = UriFactory::build('editor/single?{?}&id=' . $value->getId()); ?>
+ $url = UriFactory::build('{/lang}/{/app}/editor/single?{?}&id=' . $value->getId()); ?>
|
|
|
| = $this->printHtml($value->title); ?>
- | = $this->printHtml($this->renderUserName('%3$s %2$s %1$s', [$value->createdBy->name1, $value->createdBy->name2, $value->createdBy->name3, $value->createdBy->login ?? ''])); ?>
+ | = $this->printHtml($this->renderUserName('%3$s %2$s %1$s', [$value->createdBy->name1, $value->createdBy->name2, $value->createdBy->name3, $value->createdBy->login ?? ''])); ?>
| = $this->printHtml($value->createdAt->format('Y-m-d')); ?>
diff --git a/Theme/Backend/editor-single.tpl.php b/Theme/Backend/editor-single.tpl.php
index 9b531af..c215193 100755
--- a/Theme/Backend/editor-single.tpl.php
+++ b/Theme/Backend/editor-single.tpl.php
@@ -45,7 +45,7 @@ echo $this->getData('nav')->render(); ?>
@@ -56,8 +56,8 @@ echo $this->getData('nav')->render(); ?>
extension === 'collection'
- ? UriFactory::build('media/list?path=' . \rtrim($file->getVirtualPath(), '/') . '/' . $file->name)
- : UriFactory::build('media/single?id=' . $file->getId()
+ ? UriFactory::build('{/lang}/{/app}/media/list?path=' . \rtrim($file->getVirtualPath(), '/') . '/' . $file->name)
+ : UriFactory::build('{/lang}/{/app}/media/single?id=' . $file->getId()
. '&path={?path}' . (
$file->getId() === 0
? '/' . $file->name
diff --git a/info.json b/info.json
index 6cc7f63..9a9d36a 100755
--- a/info.json
+++ b/info.json
@@ -12,7 +12,7 @@
},
"creator": {
"name": "Karaka",
- "website": "www.spl1nes.com"
+ "website": "jingga.app"
},
"description": "The administration module.",
"directory": "Editor",
|