mirror of
https://github.com/Karaka-Management/oms-Support.git
synced 2026-01-25 15:08:41 +00:00
Case fix!
This commit is contained in:
parent
e1c3915ce5
commit
7cb2b8d0ee
19
Theme/Backend/Lang/Navigation.en.lang.php
Normal file
19
Theme/Backend/Lang/Navigation.en.lang.php
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
/**
|
||||
* Orange Management
|
||||
*
|
||||
* PHP Version 7.0
|
||||
*
|
||||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright 2013 Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
* @link http://orange-management.com
|
||||
*/
|
||||
$MODLANG['Navigation'] = [
|
||||
'Support' => 'Support',
|
||||
'Ticket' => 'Ticket',
|
||||
];
|
||||
60
Theme/Backend/Lang/en.lang.php
Normal file
60
Theme/Backend/Lang/en.lang.php
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
/**
|
||||
* Orange Management
|
||||
*
|
||||
* PHP Version 7.0
|
||||
*
|
||||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright 2013 Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
* @link http://orange-management.com
|
||||
*/
|
||||
$MODLANG['Support'] = [
|
||||
'Account' => 'Account',
|
||||
'All' => 'All',
|
||||
'AverageProcessTime' => 'Avg. Process Time',
|
||||
'AverageAmount' => 'Average Amount',
|
||||
'Created' => 'Created',
|
||||
'Creator' => 'Creator',
|
||||
'Day' => 'Day',
|
||||
'Department' => 'Department',
|
||||
'Description' => 'Description',
|
||||
'Due' => 'Due',
|
||||
'Files' => 'Files',
|
||||
'Forwarded' => 'Forwarded',
|
||||
'From' => 'From',
|
||||
'Group' => 'Group',
|
||||
'Interval' => 'Interval',
|
||||
'InTime' => 'In Time',
|
||||
'Message' => 'Message',
|
||||
'Media' => 'Media',
|
||||
'Month' => 'Month',
|
||||
'Name' => 'Name',
|
||||
'New' => 'New',
|
||||
'Open' => 'Open',
|
||||
'Person' => 'Person',
|
||||
'Priority' => 'Priority',
|
||||
'Received' => 'Received',
|
||||
'Receiver' => 'Receiver',
|
||||
'Redirected' => 'Redirected',
|
||||
'Responsible' => 'Responsible',
|
||||
'Select' => 'Select',
|
||||
'Settings' => 'Settings',
|
||||
'Size' => 'Size',
|
||||
'Statistics' => 'Statistics',
|
||||
'Status' => 'Status',
|
||||
'Support' => 'Support',
|
||||
'Ticket' => 'Ticket',
|
||||
'Tickets' => 'Tickets',
|
||||
'Title' => 'Title',
|
||||
'To' => 'To',
|
||||
'Today' => 'Today',
|
||||
'Topic' => 'Topic',
|
||||
'Type' => 'Type',
|
||||
'Week' => 'Week',
|
||||
'Year' => 'Year',
|
||||
];
|
||||
34
Theme/Backend/support-list.tpl.php
Normal file
34
Theme/Backend/support-list.tpl.php
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
/**
|
||||
* Orange Management
|
||||
*
|
||||
* PHP Version 7.0
|
||||
*
|
||||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright 2013 Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
* @link http://orange-management.com
|
||||
*/
|
||||
/**
|
||||
* @var \phpOMS\Views\View $this
|
||||
*/
|
||||
echo $this->getData('nav')->render(); ?>
|
||||
|
||||
<section class="box w-100">
|
||||
<table class="table">
|
||||
<caption><?= $this->l11n->lang['Support']['Tickets']; ?></caption>
|
||||
<thead>
|
||||
<tr><td><?= $this->l11n->lang[0]['ID']; ?>
|
||||
<td><?= $this->l11n->lang['Support']['Status']; ?>
|
||||
<td><?= $this->l11n->lang['Support']['Priority']; ?>
|
||||
<td class="full"><?= $this->l11n->lang['Support']['Title']; ?>
|
||||
<td><?= $this->l11n->lang['Support']['Responsible']; ?>
|
||||
<tfoot>
|
||||
<tbody>
|
||||
<tr><td colspan="5" class="empty"><?= $this->l11n->lang[0]['Empty']; ?>
|
||||
</table>
|
||||
</section>
|
||||
1
Theme/Backend/support-settings.tpl.php
Normal file
1
Theme/Backend/support-settings.tpl.php
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
41
Theme/Backend/ticket-create.tpl.php
Normal file
41
Theme/Backend/ticket-create.tpl.php
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
/**
|
||||
* Orange Management
|
||||
*
|
||||
* PHP Version 7.0
|
||||
*
|
||||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright 2013 Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
* @link http://orange-management.com
|
||||
*/
|
||||
/**
|
||||
* @var \phpOMS\Views\View $this
|
||||
*/
|
||||
echo $this->getData('nav')->render(); ?>
|
||||
|
||||
<section class="box w-50">
|
||||
<h1><?= $this->l11n->lang['Support']['Ticket'] ?></h1>
|
||||
<div class="inner">
|
||||
<form action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/reporter/template'); ?>" method="post">
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><td><label for="iTitle"><?= $this->l11n->lang['Support']['Department'] ?></label>
|
||||
<tr><td><select></select>
|
||||
<tr><td><label for="iTitle"><?= $this->l11n->lang['Support']['Topic'] ?></label>
|
||||
<tr><td><select></select>
|
||||
<tr><td><label for="iTitle"><?= $this->l11n->lang['Support']['Title'] ?></label>
|
||||
<tr><td><input id="iTitle" name="name" type="text" required>
|
||||
<tr><td><label for="iTitle"><?= $this->l11n->lang['Support']['Description'] ?></label>
|
||||
<tr><td><textarea required></textarea>
|
||||
<tr><td><label for="iFile"><?= $this->l11n->lang['Support']['Files'] ?></label>
|
||||
<tr><td><input id="iFile" name="fileVisual" type="file" multiple><input id="iFileHidden" name="files" type="hidden">
|
||||
<tr><td><input type="submit" value="<?= $this->l11n->lang[0]['Create'] ?>">
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
1
Theme/Backend/user-support-dashboard.tpl.php
Normal file
1
Theme/Backend/user-support-dashboard.tpl.php
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
Loading…
Reference in New Issue
Block a user