mirror of
https://github.com/Karaka-Management/oms-Tasks.git
synced 2026-02-16 06:38:40 +00:00
Templating
This commit is contained in:
parent
e3fd863669
commit
3b8d21c78f
|
|
@ -187,6 +187,12 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
$view->addData('task', $task);
|
$view->addData('task', $task);
|
||||||
$view->addData('nav', $this->app->moduleManager->get('Navigation')->createNavigationMid(1001101001, $request, $response));
|
$view->addData('nav', $this->app->moduleManager->get('Navigation')->createNavigationMid(1001101001, $request, $response));
|
||||||
|
|
||||||
|
$accGrpSelector = new \Modules\Profile\Theme\Backend\Components\AccountGroupSelector\BaseView($this->app, $request, $response);
|
||||||
|
$view->addData('accGrpSelector', $accGrpSelector);
|
||||||
|
|
||||||
|
$editor = new \Modules\Editor\Theme\Backend\Components\Editor\BaseView($this->app, $request, $response);
|
||||||
|
$view->addData('editor', $editor);
|
||||||
|
|
||||||
return $view;
|
return $view;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -256,7 +262,7 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
{
|
{
|
||||||
$val = [];
|
$val = [];
|
||||||
if (($val['title'] = empty($request->getData('title')))
|
if (($val['title'] = empty($request->getData('title')))
|
||||||
|| ($val['description'] = empty($request->getData('description')))
|
|| ($val['plain'] = empty($request->getData('plain')))
|
||||||
|| ($val['due'] = !((bool) strtotime((string) $request->getData('due'))))
|
|| ($val['due'] = !((bool) strtotime((string) $request->getData('due'))))
|
||||||
|| ($val['forward'] = !(is_numeric($request->getData('forward') ?? 0)))
|
|| ($val['forward'] = !(is_numeric($request->getData('forward') ?? 0)))
|
||||||
) {
|
) {
|
||||||
|
|
@ -317,8 +323,8 @@ class Controller extends ModuleAbstract implements WebInterface
|
||||||
{
|
{
|
||||||
$task = new Task();
|
$task = new Task();
|
||||||
$task->setTitle((string) ($request->getData('title') ?? ''));
|
$task->setTitle((string) ($request->getData('title') ?? ''));
|
||||||
$task->setDescription(Markdown::parse((string) ($request->getData('description') ?? '')));
|
$task->setDescription(Markdown::parse((string) ($request->getData('plain') ?? '')));
|
||||||
$task->setDescriptionRaw((string) ($request->getData('description') ?? ''));
|
$task->setDescriptionRaw((string) ($request->getData('plain') ?? ''));
|
||||||
$task->setCreatedBy($request->getHeader()->getAccount());
|
$task->setCreatedBy($request->getHeader()->getAccount());
|
||||||
$task->setDue(new \DateTime((string) ($request->getData('due') ?? 'now')));
|
$task->setDue(new \DateTime((string) ($request->getData('due') ?? 'now')));
|
||||||
$task->setStatus(TaskStatus::OPEN);
|
$task->setStatus(TaskStatus::OPEN);
|
||||||
|
|
|
||||||
|
|
@ -47,8 +47,8 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<tr><td><label for="iTitle"><?= $this->getHtml('Title') ?></label>
|
<tr><td><label for="iTitle"><?= $this->getHtml('Title') ?></label>
|
||||||
<tr><td><input type="text" id="iTitle" name="title" placeholder=" <?= $this->getHtml('Title') ?>" required>
|
<tr><td><input type="text" id="iTitle" name="title" placeholder=" <?= $this->getHtml('Title') ?>" required>
|
||||||
<tr><td><label for="iMessage"><?= $this->getHtml('Message') ?></label>
|
<tr><td><label for="iMessage"><?= $this->getHtml('Message') ?></label>
|
||||||
<tr><td><?= $this->getData('editor')->render('task-editor-tools'); ?>
|
<tr><td><?= $this->getData('editor')->render('task-editor'); ?>
|
||||||
<tr><td><?= $this->getData('editor')->getData('text')->render('task-editor-text', 'plain', 'fTask'); ?>
|
<tr><td><?= $this->getData('editor')->getData('text')->render('task-editor', 'plain', 'fTask'); ?>
|
||||||
<tr><td>
|
<tr><td>
|
||||||
<input type="submit" value="<?= $this->getHtml('Create', 0, 0); ?>">
|
<input type="submit" value="<?= $this->getHtml('Create', 0, 0); ?>">
|
||||||
<input type="hidden" name="type" value="<?= $this->printHtml(TaskType::SINGLE); ?>">
|
<input type="hidden" name="type" value="<?= $this->printHtml(TaskType::SINGLE); ?>">
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
</div>
|
</div>
|
||||||
<header><h1><?= $this->printHtml($task->getTitle()); ?></h1></header>
|
<header><h1><?= $this->printHtml($task->getTitle()); ?></h1></header>
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
<?= $this->printHtml($task->getDescription()); ?>
|
<?= $task->getDescription(); ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php if (!empty($taskMedia)) : ?>
|
<?php if (!empty($taskMedia)) : ?>
|
||||||
|
|
@ -65,7 +65,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
|
|
||||||
<?php if ($element->getDescription() !== '') : ?>
|
<?php if ($element->getDescription() !== '') : ?>
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
<?= $this->printHtml($element->getDescription()); ?>
|
<?= $element->getDescription(); ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
|
@ -98,9 +98,10 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<section class="box wf-100">
|
<section class="box wf-100">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
<form id="taskElementCreate" method="POST" action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/task/element?{?}&csrf={$CSRF}'); ?>">
|
<form id="taskElementCreate" method="POST" action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/task/element?{?}&csrf={$CSRF}'); ?>">
|
||||||
<table class="layout wf-100">
|
<table class="layout wf-100" style="table-layout: fixed">
|
||||||
<tr><td><label for="iMessage"><?= $this->getHtml('Message') ?></label>
|
<tr><td><label for="iMessage"><?= $this->getHtml('Message') ?></label>
|
||||||
<tr><td><textarea id="iMessage" name="description"></textarea>
|
<tr><td><?= $this->getData('editor')->render('task-editor'); ?>
|
||||||
|
<tr><td><?= $this->getData('editor')->getData('text')->render('task-editor', 'plain', 'fTask'); ?>
|
||||||
<tr><td><label for="iDue"><?= $this->getHtml('Due') ?></label>
|
<tr><td><label for="iDue"><?= $this->getHtml('Due') ?></label>
|
||||||
<tr><td><input type="datetime-local" id="iDue" name="due" value="<?= $this->printHtml(!empty($elements) ? end($elements)->getDue()->format('Y-m-d\TH:i:s') : $task->getDue()->format('Y-m-d\TH:i:s')); ?>">
|
<tr><td><input type="datetime-local" id="iDue" name="due" value="<?= $this->printHtml(!empty($elements) ? end($elements)->getDue()->format('Y-m-d\TH:i:s') : $task->getDue()->format('Y-m-d\TH:i:s')); ?>">
|
||||||
<tr><td><label for="iStatus"><?= $this->getHtml('Status') ?></label>
|
<tr><td><label for="iStatus"><?= $this->getHtml('Status') ?></label>
|
||||||
|
|
@ -112,7 +113,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<option value="<?= $this->printHtml(TaskStatus::DONE); ?>">Done
|
<option value="<?= $this->printHtml(TaskStatus::DONE); ?>">Done
|
||||||
</select>
|
</select>
|
||||||
<tr><td><label for="iReceiver"><?= $this->getHtml('To') ?></label>
|
<tr><td><label for="iReceiver"><?= $this->getHtml('To') ?></label>
|
||||||
<tr><td><input type="text" id="iReceiver" name="forward" value="<?= $this->printHtml($this->request->getHeader()->getAccount()); ?>" placeholder=" Guest">
|
<tr><td><?= $this->getData('accGrpSelector')->render('iReceiver', true); ?>
|
||||||
<tr><td><label for="iMedia"><?= $this->getHtml('Media') ?></label>
|
<tr><td><label for="iMedia"><?= $this->getHtml('Media') ?></label>
|
||||||
<tr><td><div class="ipt-wrap">
|
<tr><td><div class="ipt-wrap">
|
||||||
<div class="ipt-first"><input type="text" id="iMedia" placeholder=" File"></div>
|
<div class="ipt-first"><input type="text" id="iMedia" placeholder=" File"></div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user