diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-02-09 01:41:49 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-02-09 01:41:49 +0000 |
commit | 0333119b79f2a1cae08d4d66dda04a91944ae62b (patch) | |
tree | c1bf64aa8f006c0b2ac02c668c0d655a340add3d /plugins/event_tracer/event_list.tpl | |
parent | 5b038de71715c8ec006abffe9d23c4172b71d0ba (diff) |
- added plugin action loc_end_picture
- enhanced the event tracer plugin to show a list of all events and actions trigered by pwg
- small reorganization in picture.php
git-svn-id: http://piwigo.org/svn/trunk@1793 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'plugins/event_tracer/event_list.tpl')
-rw-r--r-- | plugins/event_tracer/event_list.tpl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/event_tracer/event_list.tpl b/plugins/event_tracer/event_list.tpl new file mode 100644 index 000000000..8ec507395 --- /dev/null +++ b/plugins/event_tracer/event_list.tpl @@ -0,0 +1,16 @@ +There are {NB_EVENTS} calls to triger_event or triger_action. + +<table width="99%" class="table2"> +<tr class="throw"> + <th><a href="{U_SORT0}">Type</a></th> + <th><a href="{U_SORT1}">Name</a></th> + <th><a href="{U_SORT2}">File</a></th> +</tr> +<!-- BEGIN event --> +<tr> + <td>{event.TYPE}</td> + <td>{event.NAME}</td> + <td>{event.FILE}</td> +</tr> +<!-- END event --> +</table> |