mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-02-11 09:48:40 +00:00
Merge branch 'develop' of https://github.com/Orange-Management/oms-Kanban into develop
This commit is contained in:
commit
1790f2bd58
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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(); ?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user