mirror of
https://github.com/Karaka-Management/oms-Editor.git
synced 2026-01-15 11:08:43 +00:00
65 lines
2.1 KiB
PHP
65 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.1
|
|
*
|
|
* @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
|
|
*/
|
|
|
|
$doc = $this->getData('doc') ?? null;
|
|
?>
|
|
<section class="box wf-100">
|
|
<div class="inner">
|
|
<input type="text" name="title" form="docForm">
|
|
</div>
|
|
</section>
|
|
|
|
<section class="box wf-100">
|
|
<div class="inner">
|
|
<i class="fa fa-header"></i>
|
|
<i class="fa fa-link"></i>
|
|
<i class="fa fa-image"></i>
|
|
<i class="fa fa-bold"></i>
|
|
<i class="fa fa-italic"></i>
|
|
<i class="fa fa-underline"></i>
|
|
<i class="fa fa-strikethrough"></i>
|
|
<i class="fa fa-list-ol"></i>
|
|
<i class="fa fa-list-ul"></i>
|
|
<i class="fa fa-quote-right"></i>
|
|
<i class="fa fa-subscript"></i>
|
|
<i class="fa fa-superscript"></i>
|
|
<i class="fa fa-question-circle floatRight"></i>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="box wf-100">
|
|
<div class="tabular">
|
|
<ul class="tab-links">
|
|
<li><label for="c-tab-1"><?= $this->getText('Text') ?></label>
|
|
<li><label for="c-tab-2"><?= $this->getText('Preview') ?></label>
|
|
</ul>
|
|
<div class="tab-content">
|
|
<input type="radio" id="c-tab-1" name="tabular-1" checked>
|
|
|
|
<div class="tab">
|
|
<textarea style="height: 300px" placeholder="" name="plain" form="docForm"><?= isset($doc) ? $doc->getPlain() : ''; ?></textarea><input type="hidden" id="iParsed" name="parsed">
|
|
</div>
|
|
<input type="radio" id="c-tab-2" name="tabular-1">
|
|
|
|
<div class="tab">
|
|
<?= isset($doc) ? $doc->getContent() : ''; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|