Show mailcow apps in header

This commit is contained in:
andryyy
2017-04-30 21:44:42 +02:00
parent 3ffc20e238
commit 53c3c47049
2 changed files with 19 additions and 5 deletions

View File

@@ -65,9 +65,11 @@ $_SESSION['return_to'] = $_SERVER['REQUEST_URI'];
?>
<legend>mailcow Apps</legend>
<?php
foreach ($MAILCOW_APPS as $app) {
echo '<a href="' . $app['link'] . '" role="button" class="btn btn-lg btn-default">' . $app['name'] . '</a>&nbsp;';
}
foreach ($MAILCOW_APPS as $app):
?>
<a href="<?=$app['link'];?>" role="button" class="btn btn-lg btn-default"><?=$app['name'];?></a>&nbsp;
<?php
endforeach;
?>
</div>
</div>