mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
31 lines
1 KiB
PHP
31 lines
1 KiB
PHP
<div id="footer">
|
|
<div id="footer-content" class="col-xs-12 col-sm-8">
|
|
Powered by
|
|
<a href="http://easyappointments.org">Easy!Appointments
|
|
<?php
|
|
echo 'v' . $this->config->item('version');
|
|
|
|
$release_title = $this->config->item('release_label');
|
|
if ($release_title != '') {
|
|
echo ' - ' . $release_title;
|
|
}
|
|
?></a> |
|
|
<?= lang('licensed_under') ?> GPLv3 |
|
|
<span id="select-language" class="label label-success">
|
|
<?= ucfirst($this->config->item('language')) ?>
|
|
</span>
|
|
|
|
|
<a href="<?= site_url('appointments') ?>">
|
|
<?= lang('go_to_booking_page') ?>
|
|
</a>
|
|
</div>
|
|
|
|
<div id="footer-user-display-name" class="col-xs-12 col-sm-4">
|
|
<?= lang('hello') . ', ' . $user_display_name ?>!
|
|
</div>
|
|
</div>
|
|
|
|
<script src="<?= asset_url('assets/js/backend.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/js/general_functions.js') ?>"></script>
|
|
</body>
|
|
</html>
|