source: trunk/plugins/event_tracer/tracer_admin.php @ 1705

Last change on this file since 1705 was 1705, checked in by rvelices, 17 years ago

Plugins: new way of adding links and content to administration pages...

  • Property svn:eol-style set to native
File size: 1.0 KB
Line 
1<?php
2if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
3
4$me = get_plugin_data($plugin_id);
5
6global $template;
7$template->set_filenames( array('plugin_admin_content' => dirname(__FILE__).'/tracer_admin.tpl') );
8
9if ( isset($_POST['eventTracer_filters']) )
10{
11  $v = $_POST['eventTracer_filters'];
12  $v = str_replace( "\r\n", "\n", $v );
13  $v = str_replace( "\n\n", "\n", $v );
14  $v = stripslashes($v);
15  if (!empty($v))
16    $me->my_config['filters'] = explode("\n", $v);
17  else
18    $me->my_config['filters'] = array();
19  $me->my_config['show_args'] = isset($_POST['eventTracer_show_args']);
20  $me->save_config();
21  global $page;
22  array_push($page['infos'], 'event tracer options saved');
23}
24$template->assign_var('EVENT_TRACER_FILTERS', implode("\n", $me->my_config['filters'] ) );
25$template->assign_var('EVENT_TRACER_SHOW_ARGS', $me->my_config['show_args'] ? 'checked="checked"' : '' );
26//$template->assign_var('EVENT_TRACER_F_ACTION', $my_url);
27
28$template->assign_var_from_handle( 'ADMIN_CONTENT', 'plugin_admin_content');
29?>
Note: See TracBrowser for help on using the repository browser.