Code

Added dummy for rsyslog plugin
[gosa.git] / gosa-plugins / rsyslog / addons / rsyslog / class_rsyslog.inc
1 <?php
3 class rsyslog extends plugin
4 {
5   var $plHeadline= "rSyslog";
6   var $plDescription= "View system logs";
8   function gosa_logview (&$config, $dn= NULL)
9   {
10     $this->config= &$config;
11     $this->ui = get_userinfo();
12   }
14   function execute()
15   {
16     $smarty = get_smarty();
18     return($smarty->fetch(get_template_path("rSyslog.tpl", TRUE)));
19   }
20 }
21 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
22 ?>