This commit is contained in:
Dennis Eichhorn 2024-01-02 23:34:18 +00:00
parent 2bb8079dd3
commit 26ea0e2289
4 changed files with 7 additions and 7 deletions

View File

@ -34,7 +34,7 @@ use phpOMS\Views\View;
final class BackendController extends Controller final class BackendController extends Controller
{ {
/** /**
* Routing end-point for application behaviour. * Routing end-point for application behavior.
* *
* @param RequestAbstract $request Request * @param RequestAbstract $request Request
* @param ResponseAbstract $response Response * @param ResponseAbstract $response Response
@ -58,7 +58,7 @@ final class BackendController extends Controller
} }
/** /**
* Routing end-point for application behaviour. * Routing end-point for application behavior.
* *
* @param RequestAbstract $request Request * @param RequestAbstract $request Request
* @param ResponseAbstract $response Response * @param ResponseAbstract $response Response
@ -79,7 +79,7 @@ final class BackendController extends Controller
} }
/** /**
* Routing end-point for application behaviour. * Routing end-point for application behavior.
* *
* @param RequestAbstract $request Request * @param RequestAbstract $request Request
* @param ResponseAbstract $response Response * @param ResponseAbstract $response Response

View File

@ -17,7 +17,7 @@ namespace Modules\ProjectManagement\Models;
use phpOMS\Stdlib\Base\Enum; use phpOMS\Stdlib\Base\Enum;
/** /**
* Permision state enum. * Permission category enum.
* *
* @package Modules\ProjectManagement\Models * @package Modules\ProjectManagement\Models
* @license OMS License 2.0 * @license OMS License 2.0

View File

@ -104,9 +104,9 @@ class ProjectAttributeValue implements \JsonSerializable
/** /**
* Localization * Localization
* *
* @var null|BaseStringL11n * @var string|BaseStringL11n
*/ */
public ?BaseStringL11n $l11n = null; public string | BaseStringL11n $l11n = '';
/** /**
* Set value * Set value

View File

@ -25,7 +25,7 @@ echo $this->data['nav']->render(); ?>
<table class="layout wf-100"> <table class="layout wf-100">
<tbody> <tbody>
<tr><td colspan="2"><label for="iName"><?= $this->getHtml('Name'); ?></label> <tr><td colspan="2"><label for="iName"><?= $this->getHtml('Name'); ?></label>
<tr><td colspan="2"><input type="text" id="iName" name="name" placeholder="&#xf007; Name" value="<?= $this->printHtml($project->getName()); ?>" required> <tr><td colspan="2"><input type="text" id="iName" name="name" placeholder="Name" value="<?= $this->printHtml($project->getName()); ?>" required>
<tr><td><label for="iStart"><?= $this->getHtml('Start'); ?></label> <tr><td><label for="iStart"><?= $this->getHtml('Start'); ?></label>
<td><label for="iEnd"><?= $this->getHtml('End'); ?></label> <td><label for="iEnd"><?= $this->getHtml('End'); ?></label>
<tr><td><input type="datetime-local" id="iStart" name="start" value="<?= $this->printHtml($project->getStart()->format('Y-m-d\TH:i:s')); ?>"> <tr><td><input type="datetime-local" id="iStart" name="start" value="<?= $this->printHtml($project->getStart()->format('Y-m-d\TH:i:s')); ?>">