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

Last change on this file since 1731 was 1705, checked in by rvelices, 17 years ago

Plugins: new way of adding links and content to administration pages...

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