mirror of
https://github.com/Karaka-Management/oms-Editor.git
synced 2026-01-27 16:58:40 +00:00
Case fix!
This commit is contained in:
parent
118df08308
commit
2855f07148
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',
|
||||
'Editor' => 'Editor',
|
||||
'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'] = [
|
||||
];
|
||||
29
Theme/Backend/Lang/en.lang.php
Normal file
29
Theme/Backend/Lang/en.lang.php
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<?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['Editor'] = [
|
||||
'Created' => 'Created',
|
||||
'Creator' => 'Creator',
|
||||
'Documents' => 'Documents',
|
||||
'Editor' => 'Editor',
|
||||
'GroupUser' => 'Group/User',
|
||||
'Insert' => 'Insert',
|
||||
'Layout' => 'Layout',
|
||||
'Name' => 'Name',
|
||||
'Permission' => 'Permission',
|
||||
'Preview' => 'Preview',
|
||||
'Start' => 'Start',
|
||||
'Text' => 'Text',
|
||||
];
|
||||
120
Theme/Backend/editor-create.tpl.php
Normal file
120
Theme/Backend/editor-create.tpl.php
Normal file
|
|
@ -0,0 +1,120 @@
|
|||
<?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['Editor']['Start'] ?></label>
|
||||
<li><label for="c-tab-2"><?= $this->l11n->lang['Editor']['Insert'] ?></label>
|
||||
<li><label for="c-tab-3"><?= $this->l11n->lang['Editor']['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-copy"></i>
|
||||
<li><i class="fa fa-lg fa-paste"></i>
|
||||
<li><i class="fa fa-lg fa-cut"></i>
|
||||
<li><i class="fa fa-lg fa-bold"></i>
|
||||
<li><i class="fa fa-lg fa-italic"></i>
|
||||
<li><i class="fa fa-lg fa-underline"></i>
|
||||
<li><i class="fa fa-lg fa-strikethrough"></i>
|
||||
<li><i class="fa fa-lg fa-font"></i>
|
||||
<li><i class="fa fa-lg fa-subscript"></i>
|
||||
<li><i class="fa fa-lg fa-superscript"></i>
|
||||
<li><i class="fa fa-lg fa-paint-brush"></i>
|
||||
<li><i class="fa fa-lg fa-pencil"></i>
|
||||
<li><i class="fa fa-lg fa-list-ul"></i>
|
||||
<li><i class="fa fa-lg fa-list-ol"></i>
|
||||
<li><i class="fa fa-lg fa-indent"></i>
|
||||
<li><i class="fa fa-lg fa-dedent"></i>
|
||||
<li><i class="fa fa-lg fa-align-left"></i>
|
||||
<li><i class="fa fa-lg fa-align-justify"></i>
|
||||
<li><i class="fa fa-lg fa-align-right"></i>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="radio" id="c-tab-2" name="tabular-1">
|
||||
<div class="tab">
|
||||
<ul class="h-list">
|
||||
<li><i class="fa fa-lg fa-table"></i>
|
||||
<li><i class="fa fa-lg fa-image"></i>
|
||||
<li><i class="fa fa-lg fa-camera"></i>
|
||||
<li><i class="fa fa-lg fa-paint-brush"></i>
|
||||
<li><i class="fa fa-lg fa-bar-chart"></i>
|
||||
<li><i class="fa fa-lg fa-link"></i>
|
||||
<li><i class="fa fa-lg fa-unlink"></i>
|
||||
<li><i class="fa fa-lg fa-code"></i>
|
||||
<li><i class="fa fa-lg fa-quote-right"></i>
|
||||
<li><i class="fa fa-lg fa-calendar"></i>
|
||||
<li><i class="fa fa-lg fa-clock"></i>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="radio" id="c-tab-3" name="tabular-1">
|
||||
<div class="tab">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="box w-100">
|
||||
<div class="tabular">
|
||||
<ul class="tab-links">
|
||||
<li><label for="c-tab2-1"><?= $this->l11n->lang['Editor']['Text'] ?></label>
|
||||
<li><label for="c-tab2-2"><?= $this->l11n->lang['Editor']['Preview'] ?></label>
|
||||
</ul>
|
||||
<div class="tab-content">
|
||||
<input type="radio" id="c-tab2-1" name="tabular-2" checked>
|
||||
<div class="tab">
|
||||
<textarea class="wf-100"></textarea>
|
||||
</div>
|
||||
<input type="radio" id="c-tab2-2" name="tabular-2">
|
||||
<div class="tab">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="box w-100">
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout">
|
||||
<tr><td colspan="2"><label><?= $this->l11n->lang['Editor']['Permission'] ?></label>
|
||||
<tr><td><select>
|
||||
<option>
|
||||
</select>
|
||||
<tr><td colspan="2"><label><?= $this->l11n->lang['Editor']['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/editor-list.tpl.php
Normal file
44
Theme/Backend/editor-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['Editor']['Documents']; ?></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="wf-100"><?= $this->l11n->lang['Editor']['Name']; ?>
|
||||
<td><?= $this->l11n->lang['Editor']['Creator']; ?>
|
||||
<td><?= $this->l11n->lang['Editor']['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