Last change
on this file since 29842 was
3612,
checked in by rvelices, 15 years ago
|
merge r3611 from trunk
improve event tracer: add the possibility to dump all the included php files
|
-
Property svn:eol-style set to
LF
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.3 KB
|
Line | |
---|
1 | {* $Id: tracer_admin.tpl 3612 2009-07-16 19:26:57Z rvelices $ *} |
---|
2 | <div class="titrePage"> |
---|
3 | <h2>Event Tracer</h2> |
---|
4 | </div> |
---|
5 | |
---|
6 | <p> |
---|
7 | The event tracer is a developer tool that logs in the footer of the window all calls to trigger_event method. |
---|
8 | You 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 arguments |
---|
16 | <input type="checkbox" name="eventTracer_show_args" {$EVENT_TRACER_SHOW_ARGS} /> |
---|
17 | </label> |
---|
18 | |
---|
19 | <br/> |
---|
20 | |
---|
21 | <label>Fill below a list of regular expressions (one per line). |
---|
22 | An event will be logged if its name matches at least one expression in the list. |
---|
23 | <textarea name="eventTracer_filters" id="eventTracer_filters"rows="10" cols="80">{$EVENT_TRACER_FILTERS}</textarea> |
---|
24 | </label> |
---|
25 | |
---|
26 | <br/> |
---|
27 | |
---|
28 | <label>Show all registered handlers |
---|
29 | <input type="checkbox" name="eventTracer_show_registered" {$EVENT_TRACER_SHOW_REGISTERED} /> |
---|
30 | </label> |
---|
31 | |
---|
32 | <label>Show all included php files |
---|
33 | <input type="checkbox" name="eventTracer_show_included_files" {$EVENT_TRACER_SHOW_INCLUDED_FILES} /> |
---|
34 | </label> |
---|
35 | |
---|
36 | </fieldset> |
---|
37 | |
---|
38 | <p><input class="submit" type="submit" value="Submit" /></p> |
---|
39 | |
---|
40 | <p><a href="{$U_LIST_EVENTS}">Click here to see a complete list of actions and events trigered by this PWG version</a>.</p> |
---|
41 | </form> |
---|
Note: See
TracBrowser
for help on using the repository browser.