mirror of
https://github.com/Karaka-Management/oms-ResearchDevelopment.git
synced 2026-01-25 11:48:40 +00:00
Case fix!
This commit is contained in:
parent
0b35b4cdf5
commit
e9d4968b26
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'] = [
|
||||
'Projects' => 'Projects',
|
||||
'RnD' => 'R&D',
|
||||
];
|
||||
17
Theme/Backend/Lang/api.en.lang.php
Normal file
17
Theme/Backend/Lang/api.en.lang.php
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?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[1] = [
|
||||
];
|
||||
37
Theme/Backend/Lang/en.lang.php
Normal file
37
Theme/Backend/Lang/en.lang.php
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<?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['ResearchDevelopment'] = [
|
||||
'Active' => 'Active',
|
||||
'Budget' => 'Budget',
|
||||
'Canceled' => 'Canceled',
|
||||
'Created' => 'Created',
|
||||
'Creator' => 'Creator',
|
||||
'Description' => 'Description',
|
||||
'Due' => 'Due',
|
||||
'Files' => 'Files',
|
||||
'Finished' => 'Finished',
|
||||
'Hold' => 'Hold',
|
||||
'Inactive' => 'Inactive',
|
||||
'Manager' => 'Manager',
|
||||
'Name' => 'Name',
|
||||
'Other' => 'Other',
|
||||
'Project' => 'Project',
|
||||
'Projects' => 'Projects',
|
||||
'Responsibility' => 'Responsibility',
|
||||
'Start' => 'Start',
|
||||
'Status' => 'Status',
|
||||
'UserGroup' => 'User/Group',
|
||||
];
|
||||
51
Theme/Backend/rnd-create.tpl.php
Normal file
51
Theme/Backend/rnd-create.tpl.php
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
<?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
|
||||
*/
|
||||
echo $this->getData('nav')->render(); ?>
|
||||
|
||||
<section class="box w-50">
|
||||
<h1><?= $this->l11n->lang['ResearchDevelopment']['Project']; ?></h1>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tr><td colspan="3"><label for="iName"><?= $this->l11n->lang['ResearchDevelopment']['Name']; ?></label>
|
||||
<tr><td colspan="2"><input type="text" id="iName" name="name" placeholder=""><td>
|
||||
<tr><td colspan="3"><label for="iDescription"><?= $this->l11n->lang['ResearchDevelopment']['Description']; ?></label>
|
||||
<tr><td colspan="2"><textarea id="iDescription" name="description"></textarea><td>
|
||||
<tr><td colspan="3"><label for="iStatus"><?= $this->l11n->lang['ResearchDevelopment']['Status']; ?></label>
|
||||
<tr><td colspan="2"><select id="iStatus" name="status">
|
||||
<option value="<?= \Modules\ProjectManagement\Models\ProjectStatus::ACTIVE ?>"><?= $this->l11n->lang['ResearchDevelopment']['Active']; ?>
|
||||
<option value="<?= \Modules\ProjectManagement\Models\ProjectStatus::INACTIVE ?>"><?= $this->l11n->lang['ResearchDevelopment']['Inactive']; ?>
|
||||
<option value="<?= \Modules\ProjectManagement\Models\ProjectStatus::FINISHED ?>"><?= $this->l11n->lang['ResearchDevelopment']['Finished']; ?>
|
||||
<option value="<?= \Modules\ProjectManagement\Models\ProjectStatus::CANCELED ?>"><?= $this->l11n->lang['ResearchDevelopment']['Canceled']; ?>
|
||||
<option value="<?= \Modules\ProjectManagement\Models\ProjectStatus::HOLD ?>"><?= $this->l11n->lang['ResearchDevelopment']['Hold']; ?>
|
||||
</select><td>
|
||||
<tr><td colspan="3"><label for="iFiles"><?= $this->l11n->lang['ResearchDevelopment']['Files']; ?></label>
|
||||
<tr><td colspan="2"><input type="file" id="iFiles" name="file" multiple><td>
|
||||
<tr><td colspan="3"><label for="iBudget"><?= $this->l11n->lang['ResearchDevelopment']['Budget']; ?></label>
|
||||
<tr><td colspan="2"><input type="text" id="iBudget" name="budget" placeholder=""><td>
|
||||
<tr><td><label for="iDue"><?= $this->l11n->lang['ResearchDevelopment']['Start']; ?></label><td><label for="iDue"><?= $this->l11n->lang['ResearchDevelopment']['Due']; ?></label><td>
|
||||
<tr><td><input type="datetime-local" id="iDue" name="due"><td><input type="datetime-local" id="iDue" name="due"><td>
|
||||
<tr><td><label for="iResponsibility"><?= $this->l11n->lang['ResearchDevelopment']['Responsibility']; ?></label><td><label for="iUser"><?= $this->l11n->lang['ResearchDevelopment']['UserGroup']; ?></label><td>
|
||||
<tr><td><select id="iStatus" name="status">
|
||||
<option value="<?= \Modules\ProjectManagement\Models\ProjectResponsibility::MANAGER ?>"><?= $this->l11n->lang['ResearchDevelopment']['Manager']; ?>
|
||||
<option value="<?= \Modules\ProjectManagement\Models\ProjectResponsibility::OTHER ?>"><?= $this->l11n->lang['ResearchDevelopment']['Other']; ?>
|
||||
</select>
|
||||
<td><input type="text" id="iUser" name="user" placeholder=""><td><button><?= $this->l11n->lang[0]['Add']; ?></button>
|
||||
<tr><td colspan="3"><input type="submit" value="<?= $this->l11n->lang[0]['Create']; ?>">
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
55
Theme/Backend/rnd-list.tpl.php
Normal file
55
Theme/Backend/rnd-list.tpl.php
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
<?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
|
||||
*/
|
||||
|
||||
$footerView = new \Web\Views\Lists\PaginationView($this->app, $this->request, $this->response);
|
||||
$footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig');
|
||||
|
||||
$footerView->setPages(1 / 25);
|
||||
$footerView->setPage(1);
|
||||
$footerView->setResults(1);
|
||||
|
||||
echo $this->getData('nav')->render(); ?>
|
||||
|
||||
<section class="box w-100">
|
||||
<table class="table">
|
||||
<caption><?= $this->l11n->lang['ResearchDevelopment']['Projects']; ?></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<td><?= $this->l11n->lang[0]['ID']; ?>
|
||||
<td><?= $this->l11n->lang['ResearchDevelopment']['Status']; ?>
|
||||
<td class="wf-100"><?= $this->l11n->lang['ResearchDevelopment']['Name']; ?>
|
||||
<td><?= $this->l11n->lang['ResearchDevelopment']['Creator']; ?>
|
||||
<td><?= $this->l11n->lang['ResearchDevelopment']['Created']; ?>
|
||||
<tfoot>
|
||||
<tr><td colspan="5"><?= $footerView->render(); ?>
|
||||
<tbody>
|
||||
<?php $c = 0; foreach ([] as $key => $value) : $c++;
|
||||
$url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/checklist/single?id=' . $value->getId()); ?>
|
||||
<tr>
|
||||
<td><a href="<?= $url; ?>"><?= $value->getId(); ?></a>
|
||||
<td><a href="<?= $url; ?>"><?= $value->getName(); ?></a>
|
||||
<td><a href="<?= $url; ?>"><?= $value->getParent(); ?></a>
|
||||
<td><a href="<?= $url; ?>"><?= $value->getUnit(); ?></a>
|
||||
<?php endforeach; ?>
|
||||
<?php if($c === 0) : ?>
|
||||
<tr>
|
||||
<td colspan="5" class="empty"><?= $this->l11n->lang[0]['Empty']; ?>
|
||||
<?php endif; ?>
|
||||
</table>
|
||||
</section>
|
||||
Loading…
Reference in New Issue
Block a user