mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-15 05:46:01 +02:00
f7960e7e72
- plugins are loaded immediately after loading the config (allow them to hack more of pwg like user init, template init etc...) - trigger event format_exif_data (for picture display only) git-svn-id: http://piwigo.org/svn/trunk@1655 68402e56-0260-453c-a942-63ccdbb3a9ee
28 lines
638 B
Smarty
28 lines
638 B
Smarty
<div class="titrePage">
|
|
<h2>{lang:Plugins}
|
|
</h2>
|
|
</div>
|
|
|
|
|
|
<!-- BEGIN plugins -->
|
|
<table class="table2">
|
|
<thead><tr class="throw">
|
|
<td>{lang:Name}</td>
|
|
<td>{lang:Version}</td>
|
|
<td>{lang:Description}</td>
|
|
<td>{lang:Actions}</td>
|
|
</tr></thead>
|
|
<!-- BEGIN plugin -->
|
|
<tr class="{plugins.plugin.CLASS}">
|
|
<td>{plugins.plugin.NAME}</td>
|
|
<td>{plugins.plugin.VERSION}</td>
|
|
<td>{plugins.plugin.DESCRIPTION}</td>
|
|
<td>
|
|
<!-- BEGIN action -->
|
|
<a href="{plugins.plugin.action.U_ACTION}" {TAG_INPUT_ENABLED}>{plugins.plugin.action.L_ACTION}</a>
|
|
<!-- END action -->
|
|
</td>
|
|
</tr>
|
|
<!-- END plugin -->
|
|
</table>
|
|
<!-- END plugins --> |