source: trunk/admin/template/goto/plugins_new.tpl @ 3283

Last change on this file since 3283 was 3283, checked in by plg, 15 years ago

complement to r3282, remove all $Id$ in source code.

  • Property svn:eol-style set to LF
File size: 1.9 KB
Line 
1{known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"}
2{known_script id="jquery.dimensions" src=$ROOT_URL|@cat:"template-common/lib/plugins/jquery.dimensions.packed.js"}
3{known_script id="jquery.cluetip" src=$ROOT_URL|@cat:"template-common/lib/plugins/jquery.cluetip.packed.js"}
4
5<script type="text/javascript">
6jQuery().ready(function(){ldelim}
7  jQuery('.cluetip').cluetip({ldelim}
8    width: 300,
9    splitTitle: '|'
10  });
11});
12</script>
13
14<div class="titrePage">
15<span class="sort">
16{'Sort order'|@translate} :
17  <select onchange="document.location = this.options[this.selectedIndex].value;">
18        {html_options options=$order_options selected=$order_selected}
19  </select>
20</span>
21  <h2>{'Plugins'|@translate}</h2>
22</div>
23
24{if isset($plugins)}
25<br>
26<table class="table2 plugins">
27<thead>
28  <tr class="throw">
29    <td>{'Name'|@translate}</td>
30    <td>{'Version'|@translate}</td>
31    <td>{'Date'|@translate}</td>
32    <td>{'Author'|@translate}</td>
33    <td>{'Actions'|@translate}</td>
34  </tr>
35</thead>
36{foreach from=$plugins item=plugin name=plugins_loop}
37  <tr class="{if $smarty.foreach.plugins_loop.index is odd}row1{else}row2{/if}">
38    <td><a href="{$plugin.EXT_URL}" onclick="window.open(this.href); return false;" class="cluetip" title="{$plugin.EXT_NAME}|{$plugin.EXT_DESC|htmlspecialchars|nl2br}">{$plugin.EXT_NAME}</a></td>
39    <td style="text-align:center;"><a href="{$plugin.EXT_URL}" onclick="window.open(this.href); return false;" class="cluetip" title="{$plugin.EXT_NAME}|{$plugin.VER_DESC|htmlspecialchars|nl2br}">{$plugin.VERSION}</a></td>
40    <td>{$plugin.DATE}</td>
41    <td>{$plugin.AUTHOR}</td>
42    <td style="text-align:center;"><a href="{$plugin.URL_INSTALL}" onclick="return confirm('{'plugins_confirm_install'|@translate|@escape:javascript}');">{'plugins_auto_install'|@translate}</a>
43      / <a href="{$plugin.URL_DOWNLOAD}">{'plugins_download'|@translate}</a>
44    </td>
45  </tr>
46{/foreach}
47</table>
48{/if}
Note: See TracBrowser for help on using the repository browser.