source: trunk/admin/template/goto/footer.tpl @ 2603

Last change on this file since 2603 was 2603, checked in by rub, 16 years ago

jQuery use.
All admin categoryList are resizable.
All admin teataera are autogrow.

On call for all resize application.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.6 KB
Line 
1{* $Id: footer.tpl 2603 2008-09-26 21:47:46Z rub $ *}
2{*
3          Warning : This is the admin pages footer only
4          don't be confusing with the public page footer
5*}
6<div id="copyright">
7 <a name="EoP"></a> <!-- End of ADMIN Page -->
8 {if isset($debug.TIME) }
9 {'generation_time'|@translate} {$debug.TIME} ({$debug.NB_QUERIES} {'sql_queries_in'|@translate} {$debug.SQL_TIME}) -
10 {/if}
11
12 {* Please, do not remove this copyright. If you really want to,
13      contact us on http://piwigo.org to find a solution on how
14      to show the origin of the script...
15  *}
16
17  {'powered_by'|@translate}
18  <a href="http://piwigo.org" class="Piwigo">
19  <span class="Piwigo">Piwigo</span></a>
20  {$VERSION}
21  {if isset($CONTACT_MAIL)}
22  - {'send_mail'|@translate}
23  <a href="mailto:{$CONTACT_MAIL}?subject={'title_send_mail'|@translate|@escape:url}">{'Webmaster'|@translate}</a>
24  {/if}
25
26</div> <!-- copyright -->
27{if isset($footer_elements)}
28{foreach from=$footer_elements item=v}
29{$v}
30{/foreach}
31{/if}
32{if isset($debug.QUERIES_LIST)}
33<div id="debug">
34{$debug.QUERIES_LIST}
35</div>
36{/if}
37</div> <!-- the_page -->
38
39<!-- Begin of JS -->
40{literal}
41<script type="text/javascript">
42  jQuery().ready(function(){
43    // Auto size for all text area
44    jQuery("TEXTAREA").growfield();
45    // All admin categoryList are resizable
46    jQuery(".doubleSelect, .categoryList").resizable({
47      knobHandles: false,
48      animate: true,
49      animateDuration: "slow",
50      animateEasing: "swing",
51      preventDefault: true,
52      preserveCursor: true,
53      autoHide: true,
54      ghost: true
55    });
56  });
57</script>
58{/literal}
59<!-- End of JS -->
60
61</body>
62</html>
Note: See TracBrowser for help on using the repository browser.