From 480fc1449a39808ce3c04ac25ca3908827fefef1 Mon Sep 17 00:00:00 2001 From: rvelices Date: Thu, 16 Jul 2009 19:23:43 +0000 Subject: improve event tracer: add the possibility to dump all the included php files git-svn-id: http://piwigo.org/svn/trunk@3611 68402e56-0260-453c-a942-63ccdbb3a9ee --- plugins/event_tracer/tracer_admin.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'plugins/event_tracer/tracer_admin.php') diff --git a/plugins/event_tracer/tracer_admin.php b/plugins/event_tracer/tracer_admin.php index 6e5b864e0..bec6affa6 100644 --- a/plugins/event_tracer/tracer_admin.php +++ b/plugins/event_tracer/tracer_admin.php @@ -18,14 +18,19 @@ if ( isset($_POST['eventTracer_filters']) ) $me->my_config['filters'] = array(); $me->my_config['show_args'] = isset($_POST['eventTracer_show_args']); $me->my_config['show_registered'] = isset($_POST['eventTracer_show_registered']); + if (isset($_POST['eventTracer_show_included_files']) ) + $me->my_config['show_included_files'] = true; + else + unset($me->my_config['show_included_files']); $me->save_config(); global $page; array_push($page['infos'], 'event tracer options saved'); } $template->assign('EVENT_TRACER_FILTERS', implode("\n", $me->my_config['filters'] ) ); -$template->assign('EVENT_TRACER_SHOW_ARGS', $me->my_config['show_args'] ? 'checked="checked"' : '' ); +$template->assign('EVENT_TRACER_SHOW_ARGS', @$me->my_config['show_args'] ? 'checked="checked"' : '' ); $template->assign('U_LIST_EVENTS', get_admin_plugin_menu_link(dirname(__FILE__).'/event_list.php')); -$template->assign('EVENT_TRACER_SHOW_REGISTERED', $me->my_config['show_registered'] ? 'checked="checked"' : '' ); +$template->assign('EVENT_TRACER_SHOW_REGISTERED', @$me->my_config['show_registered'] ? 'checked="checked"' : '' ); +$template->assign('EVENT_TRACER_SHOW_INCLUDED_FILES', @$me->my_config['show_included_files'] ? 'checked="checked"' : '' ); //$template->assign_var('EVENT_TRACER_F_ACTION', $my_url); -- cgit v1.2.3