mirror of
https://github.com/Karaka-Management/oms-Messages.git
synced 2026-02-11 23:08:41 +00:00
fix urls
This commit is contained in:
parent
4fdabbbc86
commit
2abe30d846
|
|
@ -5,7 +5,7 @@
|
||||||
"type": 1,
|
"type": 1,
|
||||||
"subtype": 1,
|
"subtype": 1,
|
||||||
"name": "Messages",
|
"name": "Messages",
|
||||||
"uri": "{/prefix}messages/dashboard?{?}",
|
"uri": "{/lang}/{/app}/messages/dashboard?{?}",
|
||||||
"target": "self",
|
"target": "self",
|
||||||
"icon": "fa fa-envelope",
|
"icon": "fa fa-envelope",
|
||||||
"order": 10,
|
"order": 10,
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
"type": 3,
|
"type": 3,
|
||||||
"subtype": 1,
|
"subtype": 1,
|
||||||
"name": "Inbox",
|
"name": "Inbox",
|
||||||
"uri": "{/prefix}messages/dashboard?{?}",
|
"uri": "{/lang}/{/app}/messages/dashboard?{?}",
|
||||||
"target": "self",
|
"target": "self",
|
||||||
"icon": null,
|
"icon": null,
|
||||||
"order": 1,
|
"order": 1,
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
"type": 3,
|
"type": 3,
|
||||||
"subtype": 1,
|
"subtype": 1,
|
||||||
"name": "Outbox",
|
"name": "Outbox",
|
||||||
"uri": "{/prefix}messages/outbox?{?}",
|
"uri": "{/lang}/{/app}/messages/outbox?{?}",
|
||||||
"target": "self",
|
"target": "self",
|
||||||
"icon": null,
|
"icon": null,
|
||||||
"order": 5,
|
"order": 5,
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"type": 3,
|
"type": 3,
|
||||||
"subtype": 1,
|
"subtype": 1,
|
||||||
"name": "Trash",
|
"name": "Trash",
|
||||||
"uri": "{/prefix}messages/trash?{?}",
|
"uri": "{/lang}/{/app}/messages/trash?{?}",
|
||||||
"target": "self",
|
"target": "self",
|
||||||
"icon": null,
|
"icon": null,
|
||||||
"order": 10,
|
"order": 10,
|
||||||
|
|
@ -64,7 +64,7 @@
|
||||||
"type": 3,
|
"type": 3,
|
||||||
"subtype": 1,
|
"subtype": 1,
|
||||||
"name": "Spam",
|
"name": "Spam",
|
||||||
"uri": "{/prefix}messages/spam?{?}",
|
"uri": "{/lang}/{/app}/messages/spam?{?}",
|
||||||
"target": "self",
|
"target": "self",
|
||||||
"icon": null,
|
"icon": null,
|
||||||
"order": 15,
|
"order": 15,
|
||||||
|
|
@ -79,7 +79,7 @@
|
||||||
"type": 3,
|
"type": 3,
|
||||||
"subtype": 1,
|
"subtype": 1,
|
||||||
"name": "Draft",
|
"name": "Draft",
|
||||||
"uri": "{/prefix}messages/draft?{?}",
|
"uri": "{/lang}/{/app}/messages/draft?{?}",
|
||||||
"target": "self",
|
"target": "self",
|
||||||
"icon": null,
|
"icon": null,
|
||||||
"order": 20,
|
"order": 20,
|
||||||
|
|
@ -94,7 +94,7 @@
|
||||||
"type": 3,
|
"type": 3,
|
||||||
"subtype": 1,
|
"subtype": 1,
|
||||||
"name": "Settings",
|
"name": "Settings",
|
||||||
"uri": "{/prefix}messages/settings?{?}",
|
"uri": "{/lang}/{/app}/messages/settings?{?}",
|
||||||
"target": "self",
|
"target": "self",
|
||||||
"icon": null,
|
"icon": null,
|
||||||
"order": 50,
|
"order": 50,
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php $count = 0;
|
<?php $count = 0;
|
||||||
foreach ($messages as $key => $value) : ++$count;
|
foreach ($messages as $key => $value) : ++$count;
|
||||||
$url = UriFactory::build('messages/mail/single?{?}&id=' . $value->uid); ?>
|
$url = UriFactory::build('{/lang}/{/app}/messages/mail/single?{?}&id=' . $value->uid); ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td><span class="check"><input type="checkbox" name=""></span>
|
<td><span class="check"><input type="checkbox" name=""></span>
|
||||||
<td><a href="<?= $url; ?>"<?= $this->printHtml($value->seen == 0 ? ' class="unseen"' : ''); ?>></a>
|
<td><a href="<?= $url; ?>"<?= $this->printHtml($value->seen == 0 ? ' class="unseen"' : ''); ?>></a>
|
||||||
|
|
@ -66,7 +66,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
|
|
||||||
<div class="col-xs-12 col-md-3">
|
<div class="col-xs-12 col-md-3">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<a tabindex="0" class="button" href="<?= UriFactory::build('messages/mail/create'); ?>"><i class="fa fa-pencil"></i> <?= $this->getHtml('Create', '0', '0'); ?></a>
|
<a tabindex="0" class="button" href="<?= UriFactory::build('{/lang}/{/app}/messages/mail/create'); ?>"><i class="fa fa-pencil"></i> <?= $this->getHtml('Create', '0', '0'); ?></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="portlet">
|
<div class="portlet">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user