Code

5fc90ef6caf64aef104ab50912c910843deabe54
[gosa.git] / gosa-plugins / groupware / personal / groupware / class_filterEditor.inc
1 <?php
3 class filterEditor extends plugin
4 {
5     function __construct($config, $parent, $filter)
6     {
7         $this->config = &$config;
8         $this->parent = &$parent;
9         $this->filter = $filter;
10     }
12     function execute()
13     {
14         $smarty = get_smarty();
16         $smarty->assign('filterStr', $this->renderFilter());    
18         return($smarty->fetch(get_template_path('filterEditor.tpl',TRUE,dirname(__FILE__))));
19     }
21     function renderFilter()
22     {
23         $str = "";
26         return($str);
27     }
29 }
30 ?>