%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/widgets/views/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/widgets/views/footerNavigation_email.php |
<?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2018 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
*/
use humhub\modules\ui\menu\MenuLink;
use yii\helpers\Html;
/* @var $this \humhub\modules\ui\view\components\View */
/* @var $entries MenuLink[] */
/* @var $options array */
/* @var $menu \humhub\widgets\FooterMenu */
$i = 0;
?>
<center>
<div class="text text-center powered footer-nav-email">
<?php if (!empty($entries)): ?>
<?php foreach ($entries as $k => $entry): ?>
<?php if ($entry instanceof MenuLink): ?>
<?= Html::a($entry->getLabel(), $entry->getUrl(), $entry->getHtmlOptions([
'style' => 'text-decoration: none; color: ' . $this->theme->variable('text-color-soft2', '#aeaeae')
])); ?>
<?php if (array_key_last($entries) !== $k): ?>
·
<?php endif; ?>
<?php endif; ?>
<?php endforeach; ?>
<br/>
<br/>
<?php endif; ?>
</div>
</center>