mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-09 06:44:56 +02:00
- plugins can add now their page to the admin page
- new plugin (event_tracer) that demonstrate it and useful to see all calls to trigger_event git-svn-id: http://piwigo.org/svn/trunk@1580 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<div class="titrePage">
|
||||
<h2>
|
||||
<!-- BEGIN plugin_menu -->
|
||||
<!-- BEGIN menu_item -->
|
||||
<span style="margin-left:2px;"><a href="{plugin_menu.menu_item.URL}">{plugin_menu.menu_item.NAME}</a></span>
|
||||
<!-- END menu_item -->
|
||||
<!-- END plugin_menu -->
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
|
||||
{PLUGIN_ADMIN_CONTENT}
|
||||
@@ -1,17 +1,26 @@
|
||||
<div class="titrePage">
|
||||
<h2>{lang:Plugins}</h2>
|
||||
<h2>
|
||||
<!-- BEGIN plugin_menu -->
|
||||
<!-- BEGIN menu_item -->
|
||||
<span style="margin-left:2px;"><a href="{plugin_menu.menu_item.URL}">{plugin_menu.menu_item.NAME}</a></span>
|
||||
<!-- END menu_item -->
|
||||
<!-- END plugin_menu -->
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- BEGIN plugins -->
|
||||
<table>
|
||||
<thead><tr>
|
||||
<table class="table2">
|
||||
<thead><tr class="throw">
|
||||
<td>{lang:Name}</td>
|
||||
<td>{lang:Version}</td>
|
||||
<td>{lang:Description}</td>
|
||||
<td>{lang:Action}</td>
|
||||
<td>{lang:Actions}</td>
|
||||
</tr></thead>
|
||||
<!-- BEGIN plugin -->
|
||||
<tr>
|
||||
<tr class="{plugins.plugin.CLASS}">
|
||||
<td>{plugins.plugin.NAME}</td>
|
||||
<td>{plugins.plugin.VERSION}</td>
|
||||
<td>{plugins.plugin.DESCRIPTION}</td>
|
||||
<td><a href="{plugins.plugin.U_ACTION}">{plugins.plugin.L_ACTION}</a></td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user