mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2025-12-28 20:17:53 -05:00
* Improve code style and PSR-12 compliance - refactored code formatting to adhere to PSR-12 guidelines - standardized coding conventions across the codebase - added missing framework files and reverted markup changes - reformatted arrays for enhanced readability - updated language files for consistent styling and clarity - minor miscellaneous improvements
25 lines
690 B
PHP
25 lines
690 B
PHP
<?php
|
|
|
|
use Config\OSPOS;
|
|
|
|
?>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<div class="jumbotron push-spaces">
|
|
<strong>
|
|
<?= lang('Common.copyrights', [date('Y')]) ?> ·
|
|
<a href="https://opensourcepos.org" target="_blank"><?= lang('Common.website') ?></a> ·
|
|
<?= esc(config('App')->application_version) ?> -
|
|
<a target="_blank" href="https://github.com/opensourcepos/opensourcepos/commit/<?= esc(config(OSPOS::class)->commit_sha1) ?>">
|
|
<?= esc(substr(config(OSPOS::class)->commit_sha1, 0, 6)); ?>
|
|
</a>
|
|
</strong>.
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|