mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-22 16:02:54 +03:00
Fixes #20
This commit is contained in:
parent
0652294a27
commit
c051a894ca
2 changed files with 41 additions and 32 deletions
|
@ -406,6 +406,12 @@
|
||||||
<span id="select-language" class="label label-success">
|
<span id="select-language" class="label label-success">
|
||||||
<?php echo ucfirst($this->config->item('language')); ?>
|
<?php echo ucfirst($this->config->item('language')); ?>
|
||||||
</span>
|
</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>
|
</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),
|
(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)
|
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');
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
ga('create', '<?php echo $google_analytics_code; ?>', 'auto');
|
ga('create', '<?php echo $google_analytics_code; ?>', 'auto');
|
||||||
ga('send', 'pageview');
|
ga('send', 'pageview');
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,31 +1,35 @@
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-content">
|
<div id="footer-content">
|
||||||
Powered by
|
Powered by
|
||||||
<a href="http://easyappointments.org">Easy!Appointments
|
<a href="http://easyappointments.org">Easy!Appointments
|
||||||
<?php
|
<?php
|
||||||
echo 'v' . $this->config->item('ea_version');
|
echo 'v' . $this->config->item('ea_version');
|
||||||
|
|
||||||
$release_title = $this->config->item('ea_release_title');
|
$release_title = $this->config->item('ea_release_title');
|
||||||
if ($release_title != '') {
|
if ($release_title != '') {
|
||||||
echo ' - ' . $release_title;
|
echo ' - ' . $release_title;
|
||||||
}
|
}
|
||||||
?></a> |
|
?></a> |
|
||||||
<?php echo $this->lang->line('licensed_under'); ?> GPLv3 |
|
<?php echo $this->lang->line('licensed_under'); ?> GPLv3 |
|
||||||
<span id="select-language" class="label label-success">
|
<span id="select-language" class="label label-success">
|
||||||
<?php echo ucfirst($this->config->item('language')); ?>
|
<?php echo ucfirst($this->config->item('language')); ?>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
|
|
||||||
|
<a href="<?php echo $base_url; ?>/index.php/appointments">
|
||||||
<div id="footer-user-display-name">
|
<?php echo $this->lang->line('go_to_booking_page') ?>
|
||||||
<?php echo $this->lang->line('hello') . ', ' . $user_display_name; ?>!
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
<div id="footer-user-display-name">
|
||||||
<script
|
<?php echo $this->lang->line('hello') . ', ' . $user_display_name; ?>!
|
||||||
type="text/javascript"
|
</div>
|
||||||
src="<?php echo $base_url; ?>/assets/js/backend.js"></script>
|
</div>
|
||||||
<script
|
|
||||||
type="text/javascript"
|
<script
|
||||||
src="<?php echo $base_url; ?>/assets/js/general_functions.js"></script>
|
type="text/javascript"
|
||||||
</body>
|
src="<?php echo $base_url; ?>/assets/js/backend.js"></script>
|
||||||
</html>
|
<script
|
||||||
|
type="text/javascript"
|
||||||
|
src="<?php echo $base_url; ?>/assets/js/general_functions.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue