This commit is contained in:
Alex Tselegidis 2015-11-23 23:46:15 +01:00
parent 0652294a27
commit c051a894ca
2 changed files with 41 additions and 32 deletions

View file

@ -406,6 +406,12 @@
<span id="select-language" class="label label-success">
<?php echo ucfirst($this->config->item('language')); ?>
</span>
|
<?php if ($this->session->userdata('user_id')): ?>
<a href="<?php echo $this->config->item('base_url'); ?>/index.php/backend">
<?php echo $this->lang->line('backend_section'); ?>
</a>
<?php endif; ?>
</div>
</div>
</div>
@ -421,7 +427,6 @@
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '<?php echo $google_analytics_code; ?>', 'auto');
ga('send', 'pageview');
</script>

View file

@ -1,31 +1,35 @@
<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="label label-success">
<?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"
src="<?php echo $base_url; ?>/assets/js/backend.js"></script>
<script
type="text/javascript"
src="<?php echo $base_url; ?>/assets/js/general_functions.js"></script>
</body>
</html>
<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="label label-success">
<?php echo ucfirst($this->config->item('language')); ?>
</span>
|
<a href="<?php echo $base_url; ?>/index.php/appointments">
<?php echo $this->lang->line('go_to_booking_page') ?>
</a>
</div>
<div id="footer-user-display-name">
<?php echo $this->lang->line('hello') . ', ' . $user_display_name; ?>!
</div>
</div>
<script
type="text/javascript"
src="<?php echo $base_url; ?>/assets/js/backend.js"></script>
<script
type="text/javascript"
src="<?php echo $base_url; ?>/assets/js/general_functions.js"></script>
</body>
</html>