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); <?php
$board = $this->getData('board'); /**
* 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(); $columns = $board->getColumns();
?> ?>
<!-- <!--
@ -32,4 +48,4 @@ $columns = $board->getColumns();
<?php endforeach; ?> <?php endforeach; ?>
</div> </div>
<?php endforeach; ?> <?php endforeach; ?>
</div> </div>

View File

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