Code

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