mirror of
https://github.com/Karaka-Management/oms-Draw.git
synced 2026-01-11 14:28:40 +00:00
Case fix!
This commit is contained in:
parent
f11bdfe96b
commit
ca3bfa4abb
20
Theme/Backend/Lang/Navigation.en.lang.php
Normal file
20
Theme/Backend/Lang/Navigation.en.lang.php
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?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'] = [
|
||||
'Create' => 'Create',
|
||||
'Draw' => 'Draw',
|
||||
'List' => 'List',
|
||||
];
|
||||
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['Navigation'] = [
|
||||
];
|
||||
26
Theme/Backend/Lang/en.lang.php
Normal file
26
Theme/Backend/Lang/en.lang.php
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<?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['Draw'] = [
|
||||
'Created' => 'Created',
|
||||
'Creator' => 'Creator',
|
||||
'Draw' => 'Draw',
|
||||
'GroupUser' => 'Group/User',
|
||||
'Images' => 'Images',
|
||||
'Layout' => 'Layout',
|
||||
'Name' => 'Name',
|
||||
'Permission' => 'Permission',
|
||||
'Start' => 'Start',
|
||||
];
|
||||
84
Theme/Backend/draw-create.tpl.php
Normal file
84
Theme/Backend/draw-create.tpl.php
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
<?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">
|
||||
<div class="inner">
|
||||
<form>
|
||||
<input type="text" class="wf-100">
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="box w-100">
|
||||
<div class="tabular">
|
||||
<ul class="tab-links">
|
||||
<li><label for="c-tab-1"><?= $this->l11n->lang['Draw']['Start'] ?></label>
|
||||
<li><label for="c-tab-2"><?= $this->l11n->lang['Draw']['Layout'] ?></label>
|
||||
</ul>
|
||||
<div class="tab-content">
|
||||
<input type="radio" id="c-tab-1" name="tabular-1" checked>
|
||||
<div class="tab">
|
||||
<ul class="h-list">
|
||||
<li><i class="fa fa-lg fa-floppy-o"></i>
|
||||
<li><i class="fa fa-lg fa-cloud-download"></i>
|
||||
<li><i class="fa fa-lg fa-undo"></i>
|
||||
<li><i class="fa fa-lg fa-repeat"></i>
|
||||
<li><i class="fa fa-lg fa-pencil"></i>
|
||||
<li><i class="fa fa-lg fa-paint-brush"></i>
|
||||
<li><i class="fa fa-lg fa-eraser"></i>
|
||||
<li><i class="fa fa-lg fa-minus"></i>
|
||||
<li><i class="fa fa-lg fa-square-o"></i>
|
||||
<li><i class="fa fa-lg fa-circle-thin"></i>
|
||||
<li><i class="fa fa-lg fa-tint"></i>
|
||||
<li><i class="fa fa-lg fa-bars"></i>
|
||||
<li><i class="fa fa-lg fa-i-cursor"></i>
|
||||
<li><i class="fa fa-lg fa-text-height"></i>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="radio" id="c-tab-2" name="tabular-1">
|
||||
<div class="tab">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="m-draw">
|
||||
<section class="box w-100" style="height: 30%;">
|
||||
<div class="inner">
|
||||
<canvas></canvas>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<section class="box w-100">
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout">
|
||||
<tr><td colspan="2"><label><?= $this->l11n->lang['Draw']['Permission'] ?></label>
|
||||
<tr><td><select>
|
||||
<option>
|
||||
</select>
|
||||
<tr><td colspan="2"><label><?= $this->l11n->lang['Draw']['GroupUser'] ?></label>
|
||||
<tr><td><input id="iPermission" name="group" type="text" placeholder=""><td><button><?= $this->l11n->lang[0]['Add'] ?></button>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
44
Theme/Backend/draw-list.tpl.php
Normal file
44
Theme/Backend/draw-list.tpl.php
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
<?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(20);
|
||||
$footerView->setPage(1);
|
||||
|
||||
echo $this->getData('nav')->render(); ?>
|
||||
<section class="box">
|
||||
<table class="table">
|
||||
<caption><?= $this->l11n->lang['Draw']['Images']; ?></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="wf-100"><?= $this->l11n->lang['Draw']['Name']; ?>
|
||||
<td><?= $this->l11n->lang['Draw']['Creator']; ?>
|
||||
<td><?= $this->l11n->lang['Draw']['Created']; ?>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="3"><?= $footerView->render(); ?>
|
||||
<tbody>
|
||||
<?php $count = 0; foreach([] as $key => $value) : $count++; ?>
|
||||
<?php endforeach; ?>
|
||||
<?php if($count === 0) : ?>
|
||||
<tr><td colspan="5" class="empty"><?= $this->l11n->lang[0]['Empty']; ?>
|
||||
<?php endif; ?>
|
||||
</table>
|
||||
</section>
|
||||
Loading…
Reference in New Issue
Block a user