source: trunk/plugins/event_tracer/tracer_admin.tpl @ 2588

Last change on this file since 2588 was 2342, checked in by rub, 16 years ago

Change some PhpWebGallery to Piwigo. (2/2)

All phpwebgallery.net are not changed!

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 994 bytes
Line 
1{* $Id: tracer_admin.tpl 2342 2008-05-15 18:43:33Z rub $ *}
2<div class="titrePage">
3  <h2>Event Tracer</h2>
4</div>
5
6<p>
7The event tracer is a developer tool that logs in the footer of the window all calls to trigger_event method.
8You can use this plugin to see what events is Piwigo calling.
9<b>Note that $conf['show_queries'] must be true.</b>
10</p>
11<form method="post" action="" class="general">
12<fieldset>
13        <legend>Event Tracer</legend>
14
15<label>Show event argument
16        <input type="checkbox" name="eventTracer_show_args" {$EVENT_TRACER_SHOW_ARGS} />
17</label>
18<br/>
19<label>Fill below a list of regular expressions (one per line).
20An event will be logged if its name matches at least one expression in the list.
21        <textarea name="eventTracer_filters" id="eventTracer_filters"rows="10" cols="80">{$EVENT_TRACER_FILTERS}</textarea>
22</label>
23
24</fieldset>
25
26<p><input class="submit" type="submit" value="Submit" /></p>
27
28<p><a href="{$U_LIST_EVENTS}">Click here to see a complete list of actions and events trigered by this PWG version</a>.</p>
29</form>
Note: See TracBrowser for help on using the repository browser.