Files
opensourcepos/app/Views/home/modules.php
BudsieBuds 15d0ef7c3d Bootstrap 5 WIP
- work in progress build of conversion from bootstrap 3 to 5
2026-04-02 19:53:26 +02:00

17 lines
960 B
PHP

<h3 class="text-center pb-3 d-none d-lg-block"><?= lang('Common.welcome_message') ?></h3>
<section class="container-fluid d-flex flex-wrap justify-content-center gap-3 p-0 py-1 py-lg-0">
<?php foreach ($allowed_modules as $module) { ?>
<div class="border border-primary rounded shadow-sm bg-primary-subtle text-center d-block" title="<?= lang("Module.$module->module_id" . '_desc') ?>">
<a href="<?= base_url($module->module_id) ?>">
<img class="d-block mx-auto p-2" src="<?= base_url("images/menubar/$module->module_id.svg") ?>" alt="Menubar Image"> <!-- TODO-BS5 alt text translatable -->
</a>
<a href="<?= base_url($module->module_id) ?>">
<div class="tile-text rounded-bottom d-block bg-primary text-light fw-bold p-2">
<span><?= lang("Module.$module->module_id") ?></span>
</div>
</a>
</div>
<?php } ?>
</section>