iflrandevu/src/application/views/backend/footer.php

33 lines
1.1 KiB
PHP
Raw Normal View History

<div id="footer">
<div id="footer-content">
Powered by
<a href="http://easyappointments.org">
Easy!Appointments
<?php
echo 'v' . $this->config->item('ea_version');
$release_title = $this->config->item('ea_release_title');
if ($release_title != '') {
echo ' - ' . $release_title;
}
?>
</a> |
<?php echo $this->lang->line('licensed_under'); ?> GPLv3 |
<span id="select-language" class="badge badge-inverse">
<?php echo ucfirst($this->config->item('language')); ?>
</span>
</div>
<div id="footer-user-display-name">
<?php echo $this->lang->line('hello') . ', ' . $user_display_name; ?>!
</div>
</div>
<script
type="text/javascript"
2015-01-29 00:53:13 +02:00
src="<?php echo $base_url; ?>/assets/js/backend.js"></script>
<script
type="text/javascript"
2015-01-29 00:53:13 +02:00
src="<?php echo $base_url; ?>/assets/js/general_functions.js"></script>
</body>
</html>