mirror of
https://github.com/Karaka-Management/oms-ResearchDevelopment.git
synced 2026-02-15 04:08:40 +00:00
auto fixes + some impl.
This commit is contained in:
parent
d40c2fad1e
commit
f9986903d9
|
|
@ -6,7 +6,7 @@ use phpOMS\Account\PermissionType;
|
||||||
use phpOMS\Router\RouteVerb;
|
use phpOMS\Router\RouteVerb;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'^.*/rnd/list.*$' => [
|
'^.*/rnd/list(\?.*$|$)' => [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\ResearchDevelopment\Controller\BackendController:viewProjectList',
|
'dest' => '\Modules\ResearchDevelopment\Controller\BackendController:viewProjectList',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
|
|
@ -17,7 +17,7 @@ return [
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'^.*/rnd/create.*$' => [
|
'^.*/rnd/create(\?.*$|$)' => [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\ResearchDevelopment\Controller\BackendController:viewProjectCreate',
|
'dest' => '\Modules\ResearchDevelopment\Controller\BackendController:viewProjectCreate',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ echo $this->data['nav']->render(); ?>
|
||||||
<tr><td colspan="5">
|
<tr><td colspan="5">
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php $c = 0; foreach ([] as $key => $value) : ++$c;
|
<?php $c = 0; foreach ([] as $key => $value) : ++$c;
|
||||||
$url = \phpOMS\Uri\UriFactory::build('{/prefix}checklist/single?{?}&id=' . $value->id); ?>
|
$url = \phpOMS\Uri\UriFactory::build('{/prefix}checklist/view?{?}&id=' . $value->id); ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="<?= $url; ?>"><?= $this->printHtml($value->id); ?></a>
|
<td><a href="<?= $url; ?>"><?= $this->printHtml($value->id); ?></a>
|
||||||
<td><a href="<?= $url; ?>"><?= $this->printHtml($value->getName()); ?></a>
|
<td><a href="<?= $url; ?>"><?= $this->printHtml($value->getName()); ?></a>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,15 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\ResearchDevelopment\tests
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
\ini_set('memory_limit', '2048M');
|
\ini_set('memory_limit', '2048M');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user