forked from opsgility/osticket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.inc.php
More file actions
25 lines (25 loc) · 923 Bytes
/
footer.inc.php
File metadata and controls
25 lines (25 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
</div>
</div>
<div id="footer">
<p>Copyright © <?php echo date('Y'); ?> <?php echo (string) $ost->company ?: 'osTicket.com'; ?> - All rights reserved. AZ App service/p>
<a id="poweredBy" href="http://osticket.com" target="_blank"><?php echo __('Helpdesk software - powered by osTicket'); ?></a>
</div>
<div id="overlay"></div>
<div id="loading">
<h4><?php echo __('Please Wait!');?></h4>
<p><?php echo __('Please wait... it will take a second!');?></p>
</div>
<?php
if (($lang = Internationalization::getCurrentLanguage()) && $lang != 'en_US') { ?>
<script type="text/javascript" src="ajax.php/i18n/<?php
echo $lang; ?>/js"></script>
<?php } ?>
<script type="text/javascript">
getConfig().resolve(<?php
include INCLUDE_DIR . 'ajax.config.php';
$api = new ConfigAjaxAPI();
print $api->client(false);
?>);
</script>
</body>
</html>