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

Last change on this file since 1919 was 1919, checked in by rub, 17 years ago

Add css class on button.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1010 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 class="submit" type="submit" value="Submit" /></p>
26
27<p><a href="{U_LIST_EVENTS}">Click here to see a complete list of actions and events trigered by this PWG version</a>.</p>
28</form>
Note: See TracBrowser for help on using the repository browser.