[RiskManagement] Template cleanup

This commit is contained in:
Dennis Eichhorn 2016-11-23 23:50:37 +01:00
parent afce86894f
commit 5d33978efc
4 changed files with 102 additions and 0 deletions

View File

@ -15,6 +15,12 @@ return [
'verb' => RouteVerb::GET,
],
],
'^.*/backend/controlling/riskmanagement/risk/create.*$' => [
[
'dest' => '\Modules\RiskManagement\Controller:viewRiskCreate',
'verb' => RouteVerb::GET,
],
],
'^.*/backend/controlling/riskmanagement/cause/list.*$' => [
[
'dest' => '\Modules\RiskManagement\Controller:viewRiskCauseList',

View File

@ -118,6 +118,25 @@ class Controller extends ModuleAbstract implements WebInterface
return $view;
}
/**
* @param RequestAbstract $request Request
* @param ResponseAbstract $response Response
* @param mixed $data Generic data
*
* @return RenderableInterface
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
*/
public function viewRiskCreate(RequestAbstract $request, ResponseAbstract $response, $data = null) : \Serializable
{
$view = new View($this->app, $request, $response);
$view->setTemplate('/Modules/RiskManagement/Theme/Backend/risk-create');
$view->addData('nav', $this->app->moduleManager->get('Navigation')->createNavigationMid(1003001001, $request, $response));
return $view;
}
/**
* @param RequestAbstract $request Request
* @param ResponseAbstract $response Response

View File

@ -57,6 +57,11 @@ echo $this->getData('nav')->render(); ?>
</div>
</section>
<section class="wf-25 floatLeft">
<section class="box w-100">
<div class="inner">
<a class="button" href="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/backend/controlling/riskmanagement/risk/create'); ?>"><?= $this->getText('NewRisk'); ?></a>
</div>
</section>
<section class="box w-100">
<header><h1><?= $this->getText('Statistics'); ?></h1></header>
<div class="inner">

View File

@ -14,3 +14,75 @@
* @link http://orange-management.com
*/
echo $this->getData('nav')->render(); ?>
<div class="tabular-2">
<div class="box">
<ul class="tab-links">
<li><label for="c-tab-1"><?= $this->getText('Risk') ?></label>
<li><label for="c-tab-2"><?= $this->getText('RiskObjects') ?></label>
<li><label for="c-tab-3"><?= $this->getText('Solutions') ?></label>
</ul>
</div>
<div class="tab-content">
<input type="radio" id="c-tab-1" name="tabular-2" checked>
<div class="tab">
<section class="box w-50 floatLeft">
<header><h1><?= $this->getText('Risk'); ?></h1></header>
<div class="inner">
<form id="fRisk" method="POST" action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/controlling/riskmanagement?csrf={$CSRF}'); ?>">
<table class="layout wf-100">
<tbody>
<tr><td><label for="iName"><?= $this->getText('Name'); ?></label>
<tr><td><input type="text" id="iName" name="name" placeholder="&#xf040; <?= $this->getText('Name'); ?>" required>
<tr><td><label for="iDescription"><?= $this->getText('Description'); ?></label>
<tr><td><textarea id="iDescription" name="description"></textarea>
<tr><td><label for="iRiskConsequence"><?= $this->getText('RiskConsequence'); ?></label>
<tr><td><select id="iRiskConsequence" name="riskconsequence">
</select>
<tr><td><label for="iRiskLikelihood"><?= $this->getText('RiskLikelihood'); ?></label>
<tr><td><select id="iRiskLikelihood" name="risklikelihood">
</select>
<tr><td><label for="iCategory"><?= $this->getText('Category'); ?></label>
<tr><td><input type="text" id="iCategory" name="category" placeholder="&#xf040; <?= $this->getText('Category'); ?>">
<tr><td><label for="iDepartment"><?= $this->getText('Department'); ?></label>
<tr><td><input type="text" id="iDepartment" name="department" placeholder="&#xf040; <?= $this->getText('Department'); ?>">
<tr><td><label for="iProcess"><?= $this->getText('Process'); ?></label>
<tr><td><input type="text" id="iProcess" name="process" placeholder="&#xf040; <?= $this->getText('Process'); ?>">
<tr><td><label for="iProject"><?= $this->getText('Project'); ?></label>
<tr><td><input type="text" id="iProject" name="project" placeholder="&#xf040; <?= $this->getText('Project'); ?>">
<tr><td><label for="iReview"><?= $this->getText('Review'); ?></label>
<tr><td><input type="datetime-local" id="iReview" name="Review" value="<?= (new \DateTime('NOW'))->format('Y-m-d\TH:i:s') ?>">
<tr><td><input type="submit" value="<?= $this->getText('Create', 0, 0); ?>">
</table>
</form>
</div>
</section>
<section class="box w-50 floatLeft">
<header><h1><?= $this->getText('Permissions'); ?></h1></header>
<div class="inner">
<form>
<table class="layout wf-100">
<tbody>
<tr><td><label for="iResponsibility"><?= $this->getText('Responsibility'); ?></label><td><label for="iUser"><?= $this->getText('UserGroup'); ?></label><td>
<tr><td><select id="iStatus" name="status">
<option value="">
</select>
<td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" id="iUser" name="user" placeholder=""></span><td><button><?= $this->getText('Add', 0, 0); ?></button>
</table>
</form>
</div>
</section>
</div>
<input type="radio" id="c-tab-2" name="tabular-2">
<div class="tab">
</div>
<input type="radio" id="c-tab-3" name="tabular-2">
<div class="tab">
</div>
</div>
</div>