Code

f04d4e65ae800d5f588042ffbd56187036418193
[gosa.git] / gosa-core / plugins / generic / dashBoard / dbInformation / class_dbInformation.inc
1 <?php
3 class dbInformation extends plugin
4 {
5     function __construct($config)
6     {
7         parent::__construct($config, NULL);
8     }
10     function execute()
11     {
12         $smarty = get_smarty();
13         return($smarty->fetch(get_template_path('dbInformation/contents.tpl', TRUE)));
14     }
16     function save_object()
17     {
18         parent::save_object();
19     }
21     function save()
22     {
23         parent::save();
24     }
26     function check()
27     {
28         return(parent::check());
29     }
31     function remove_from_parent()
32     {
33         parent::remove_from_parent();
34     }
35 }
37 ?>