aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/event_tracer/event_list.tpl
blob: 206bac4fb6bd101416b9a9e9fc2d8b0cf03c1e2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
{foreach from=$events item=event}
<tr>
  <td>{$event.TYPE}</td>
  <td>{$event.NAME}</td>
  <td>{$event.FILE}</td>
</tr>
{/foreach}
</table>