-
Notifications
You must be signed in to change notification settings - Fork 12
/
footer_minified.inc
42 lines (38 loc) · 2.25 KB
/
footer_minified.inc
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php if (empty($_GET['page']) || $_GET['page'] == 'dashboard' || $_GET['page'] == 'home') { ?>
<div class="clear"></div>
<div id="newsfeed" class="menutableright block">
<h3><span class="glyphicon glyphicon-bullhorn text-danger"></span> <?php printf('<a target="_blank" href="https://www.phplist.org/newslist/">%s</a>', s('phpList community news')); ?></h3>
<?php include 'communityfeed.php'; ?>
</div>
<?php } ?>
</div> <!-- end #Wrapp -->
<div id="footer">
<div class="version pull-left">
<a target="_blank" href="./?page=about">© phpList ltd.</a>
<?php if (!empty($_SESSION['adminloggedin'])) {
echo '- v'. VERSION;
} ?>
</div>
<div class="ressources pull-right">
<a href="./?page=about"><?php echo s('About'); ?></a> |
<a target="_blank" href="./?page=community"><?php echo ('Help'); ?></a> |
<a target="_blank" href="https://resources.phplist.com"><?php echo s('Resources'); ?></a> |
<a target="_blank" href="http://twitter.com/phplist">Twitter</a>
</div>
</div>
</div> <!-- end #content-->
</div> <!-- end #container-->
<a id="back-to-top" href="#" class="btn btn-info btn-lg back-to-top" role="button" title="Click to return on the top page" data-toggle="tooltip" data-placement="left"><span class="glyphicon glyphicon-chevron-up"></span></a>
</div> <!-- end .container-fluid -->
<script type="text/javascript" src="ui/phplist-ui-bootlist/js/jquery.min.js?v=<?php echo md5(VERSION) ?>"></script>
<script type="text/javascript" src="js/phplistapp.js?v=<?php echo md5(VERSION) ?>"></script>
<script type="text/javascript" src="ui/phplist-ui-bootlist/js/dist/phpList_ui_bootlist.min.js?v=<?php echo md5(VERSION) ?>"></script>
<script>
/* do not remove this from here */
$(document).ready(function(){
if ( $('body').hasClass('invisible') ){
applyCustomFormatting(); applyJqueryUiTabMigration();
}
$('#edit_list_categories input.form-control').tagsinput('refresh');
});
</script>