Case fix!

This commit is contained in:
Dennis Eichhorn 2016-03-26 18:59:38 +01:00
parent e1c3915ce5
commit 7cb2b8d0ee
6 changed files with 156 additions and 0 deletions

View 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',
];

View 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',
];

View 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>

View File

@ -0,0 +1 @@

View 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>

View File

@ -0,0 +1 @@