Code

Updated phoneAccount.
[gosa.git] / include / sieve / class_sieveElement_Block_Start.inc
1 <?php
3 class sieve_block_start 
4 {
5   var $object_id= -1;
6   
7   function sieve_block_start($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_start.tpl",TRUE,dirname(__FILE__))));
16   }
18   function check()
19   {
20     return(array());
21   }
23   function save_object()
24   {
25   }
27   function get_sieve_script_part()
28   {
29     return("{");
30   } 
31 }
32 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
33 ?>