mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-04-30 18:42:43 +02:00
- display author and and author url (if present) on plugin admin page - uniformized versions/authors... for all plugins in svn - security fix (html escape name, version, uri, author... to avoid javascript injection which could automatically simulate click on Install) - added confirmation for install/uninstall plugins Web services: - web service explorer now caches method details in order to avoid unnecessary web calls - web service explorer can now send parameters as arrays - web service explorer uses now prototype.js version 1.5 - small improvements - added and use function bad_request (sends http status code 400) git-svn-id: http://piwigo.org/svn/trunk@1852 68402e56-0260-453c-a942-63ccdbb3a9ee
32 lines
733 B
Smarty
32 lines
733 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}"
|
|
<!-- BEGIN confirm -->
|
|
onclick="return confirm('Are you sure?');"
|
|
<!-- END confirm -->
|
|
{TAG_INPUT_ENABLED}>{plugins.plugin.action.L_ACTION}</a>
|
|
<!-- END action -->
|
|
</td>
|
|
</tr>
|
|
<!-- END plugin -->
|
|
</table>
|
|
<!-- END plugins --> |