mirror of
https://github.com/Karaka-Management/oms-Navigation.git
synced 2026-01-19 20:08:40 +00:00
# Conflicts: # Draw/Controller.js # Draw/Models/DrawType.enum.js # Draw/Models/Editor.js # Media/Models/UploadFile.php
32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.1
|
|
*
|
|
* @category TBD
|
|
* @package TBD
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://orange-management.com
|
|
*/
|
|
/**
|
|
* @var \Modules\Navigation\Views\NavigationView $this
|
|
*/
|
|
if (isset($this->nav[\Modules\Navigation\Models\NavigationType::CONTENT])) :
|
|
foreach ($this->nav[\Modules\Navigation\Models\NavigationType::CONTENT] as $key => $parent) :
|
|
foreach ($parent as $link) :
|
|
if ($link['nav_parent'] == $this->parent) : ?>
|
|
<section class="box w-33 floatLeft">
|
|
<div class="inner centerText">
|
|
<a href="<?= \phpOMS\Uri\UriFactory::build($link['nav_uri']); ?>">
|
|
<p><i class="fa-5x <?= $link['nav_icon']; ?>"></i></p>
|
|
<p><?= $this->getText($link['nav_name']) ?></p>
|
|
</a>
|
|
</div>
|
|
</section>
|
|
<?php endif; endforeach; endforeach; endif;
|