aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2006-10-26 03:35:20 +0000
committerrvelices <rv-github@modusoptimus.com>2006-10-26 03:35:20 +0000
commit12182ddcfeced9934f45f20a3859049066ce0726 (patch)
tree01112ee697fa5f7cfb421fee0e6d212069ed1d58 /template/yoga
parent9e770f68a31109748880b9027dfd43d1495f13df (diff)
plugins: first prototype version
git-svn-id: http://piwigo.org/svn/trunk@1578 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga')
-rw-r--r--template/yoga/admin.tpl1
-rw-r--r--template/yoga/admin/plugins.tpl20
2 files changed, 21 insertions, 0 deletions
diff --git a/template/yoga/admin.tpl b/template/yoga/admin.tpl
index 24177e427..294b39b15 100644
--- a/template/yoga/admin.tpl
+++ b/template/yoga/admin.tpl
@@ -19,6 +19,7 @@
<li><a href="{U_CAT_UPDATE}">{lang:update}</a></li>
<li><a href="{U_MAINTENANCE}">{lang:Maintenance}</a></li>
<li><a href="{U_NOTIFICATION_BY_MAIL}">{lang:nbm_item_notification}</a></li>
+ <li><a href="{U_PLUGINS}">{lang:Plugins}</a></li>
</ul>
</dd>
</dl>
diff --git a/template/yoga/admin/plugins.tpl b/template/yoga/admin/plugins.tpl
new file mode 100644
index 000000000..81bade54d
--- /dev/null
+++ b/template/yoga/admin/plugins.tpl
@@ -0,0 +1,20 @@
+<div class="titrePage">
+ <h2>{lang:Plugins}</h2>
+</div>
+
+<!-- BEGIN plugins -->
+<table>
+<thead><tr>
+ <td>{lang:Name}</td>
+ <td>{lang:Description}</td>
+ <td>{lang:Action}</td>
+</tr></thead>
+<!-- BEGIN plugin -->
+<tr>
+ <td>{plugins.plugin.NAME}</td>
+ <td>{plugins.plugin.DESCRIPTION}</td>
+ <td><a href="{plugins.plugin.U_ACTION}">{plugins.plugin.L_ACTION}</a></td>
+</tr>
+<!-- END plugin -->
+</table>
+<!-- END plugins --> \ No newline at end of file