|
Revision 1705, 0.9 KB
(checked in by rvelices, 6 years ago)
|
|
Plugins: new way of adding links and content to administration pages...
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | <div class="titrePage"> |
|---|
| 2 | <h2>Event Tracer</h2> |
|---|
| 3 | </div> |
|---|
| 4 | |
|---|
| 5 | <p> |
|---|
| 6 | The event tracer is a developer tool that logs in the footer of the window all calls to trigger_event method. |
|---|
| 7 | You 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). |
|---|
| 19 | An 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> |
|---|