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

Last change on this file since 1580 was 1580, checked in by rvelices, 18 years ago
  • plugins can add now their page to the admin page
  • new plugin (event_tracer) that demonstrate it and useful to see all calls

to trigger_event

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