Code

Some changes for the sieve filter
[gosa.git] / include / sieve / class_sieveElement.inc
1 <?php
3 class sieveElement 
4 {
5         
6         var $name                       = "Unknown";
7         var $responsible_for= array();  
9   var $data ="";
11         function sieveElement()
12         {
13         
14         }
16   function resolve_to_object($data)
17   {
18     $this->data = @$data->dumpParseTree();
19   }
21   function execute()
22   {
23     return($this->data);
24   }
25 }       
29 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
30 ?>