This commit is contained in:
Dennis Eichhorn 2021-06-24 00:11:22 +02:00
commit 1790f2bd58
2 changed files with 21 additions and 4 deletions

View File

@ -1,5 +1,21 @@
<?php declare(strict_types=1);
$board = $this->getData('board');
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Kanban
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
/** @var \Modules\Kanban\Models\KanbanBoard $board */
$board = $this->getData('board');
/** @var \Modules\Kanban\Models\KanbanColumn[] $columns */
$columns = $board->getColumns();
?>
<!--
@ -32,4 +48,4 @@ $columns = $board->getColumns();
<?php endforeach; ?>
</div>
<?php endforeach; ?>
</div>
</div>

View File

@ -4,7 +4,7 @@
*
* PHP Version 8.0
*
* @package Modules\Tasks
* @package Modules\Kanban
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@ -14,6 +14,7 @@ declare(strict_types=1);
use phpOMS\Uri\UriFactory;
/** @var \Modules\Kanban\Models\KanbanBoard[] $boards */
$boards = $this->getData('boards');
echo $this->getData('nav')->render(); ?>