Code

Put each class in a single file.
[gosa.git] / include / sieve / class_sieveElement_Block_End.inc
1 <?php
3 class sieve_block_end 
4 {
5   function execute()
6   {
7     $smarty = get_smarty();
8     return($smarty->fetch(get_template_path("templates/element_block_end.tpl",TRUE,dirname(__FILE__))));
9   }
10   function check()
11   {
12     return(array());
13   }
15   function get_sieve_script_part()
16   {
17     return("}\n");
18   } 
19   function save_object()
20   {
21   }
22 }
24 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
25 ?>