source: trunk/admin/themes/default/template/footer.tpl @ 13079

Last change on this file since 13079 was 12613, checked in by mistic100, 12 years ago

bug:2501 Tooltip mistranslated in the themes manager

  • Property svn:eol-style set to LF
File size: 2.3 KB
Line 
1{*
2          Warning : This is the admin pages footer only
3          don't be confusing with the public page footer
4*}
5</div> <!-- pwgMain -->
6{if isset($footer_elements)}
7{foreach from=$footer_elements item=v}
8{$v}
9{/foreach}
10{/if}
11{if isset($debug.QUERIES_LIST)}
12<div id="debug">
13{$debug.QUERIES_LIST}
14</div>
15{/if}
16
17<div id="footer">
18  <div id="piwigoInfos">
19 {* Please, do not remove this copyright. If you really want to,
20      contact us on http://piwigo.org to find a solution on how
21      to show the origin of the script...
22  *}
23
24  {'Powered by'|@translate}
25  <a class="externalLink" href="{$PHPWG_URL}" title="{'Visit Piwigo project website'|@translate}">
26  <span class="Piwigo">Piwigo</span></a>
27  {$VERSION}
28  | <a class="externalLink" href="{$pwgmenu.WIKI}" title="{'Read Piwigo Documentation'|@translate}">{'Documentation'|@translate}</a>
29  | <a class="externalLink" href="{$pwgmenu.FORUM}" title="{'Get Support on Piwigo Forum'|@translate}">{'Support'|@translate}</a>
30  </div> <!-- piwigoInfos -->
31
32  <div id="pageInfos">
33 {if isset($debug.TIME) }
34 {'Page generated in'|@translate} {$debug.TIME} ({$debug.NB_QUERIES} {'SQL queries in'|@translate} {$debug.SQL_TIME}) -
35 {/if}
36
37
38  {'Contact'|@translate}
39  <a href="mailto:{$CONTACT_MAIL}?subject={'A comment on your site'|@translate|@escape:url}">{'Webmaster'|@translate}</a>
40  </div> <!-- pageInfos -->
41
42</div> <!-- footer -->
43</div> <!-- the_page -->
44
45
46{combine_script id='jquery.tipTip' load='async' path='themes/default/js/plugins/jquery.tipTip.minified.js'}
47{footer_script require='jquery.tipTip'}
48jQuery(document).ready(function() {ldelim}
49        jQuery('#pwgHead A[title], #footer A[title], .themeActions .tiptip, .languageActions .tiptip').tipTip({ldelim}
50                        'delay' : 0,
51                        'fadeIn' : 200,
52                        'fadeOut' : 200
53        });
54});
55{/footer_script}
56
57<!-- BEGIN get_combined_scripts -->
58{get_combined_scripts load='footer'}
59<!-- END get_combined_scripts -->
60
61{literal}
62<script type='text/javascript'>
63  jQuery(document).ready(function() {
64    $("a.externalLink").click(function() {
65      window.open($(this).attr("href"));
66      return false;
67    });
68  });
69</script>
70{/literal}
71
72{if not $ENABLE_SYNCHRONIZATION}
73{literal}
74<script type='text/javascript'>
75  $(document).ready(function() {
76    $("#helpSynchro").hide();
77  });
78</script>
79{/literal}
80{/if}
81
82</body>
83</html>
Note: See TracBrowser for help on using the repository browser.