Code

Fixed change_password().
[gosa.git] / include / sieve / class_sieveElement_Block_End.inc
1 <?php
3 class sieve_block_end 
4 {
5   var $object_id= -1;
6   
7   function sieve_block_end($data = NULL,$object_id)
8   {
9     $this->object_id = $object_id;
10   }
12   function execute()
13   {
14     $smarty = get_smarty();
15     return($smarty->fetch(get_template_path("templates/element_block_end.tpl",TRUE,dirname(__FILE__))));
16   }
17   function check()
18   {
19     return(array());
20   }
22   function get_sieve_script_part()
23   {
24     return("}");
25   } 
26   function save_object()
27   {
28   }
29 }
31 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
32 ?>