summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5127c3a)
raw | patch | inline | side by side (parent: 5127c3a)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 23 Jul 2010 09:34:25 +0000 (09:34 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 23 Jul 2010 09:34:25 +0000 (09:34 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19073 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/addons/goto/events/class_DaemonEvent_sysinfo.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_sysinfo.inc b/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_sysinfo.inc
index 05ff34c180798d30c8cb6d08fd6b33e7d8d56dfc..cea387f4a6e2a8a4d85ca96805d550ec43c21a4f 100644 (file)
class DaemonEvent_sysinfo extends DaemonEvent
{
- public function __construct($config,$data = array())
- {
- DaemonEvent::__construct($config,$data);
- $this->s_Menu_Name = _("System analysis");
- $this->s_Event_Name = _("System analysis");
- $this->s_Schedule_Action= "job_trigger_action_sysinfo";
- $this->s_Trigger_Action = "gosa_trigger_action_sysinfo";
- $this->s_Queued_Action = "trigger_action_sysinfo";
- $this->s_Menu_Image = "plugins/goto/images/sysinfo.png";
- $this->s_List_Image = "plugins/goto/images/sysinfo.png";
- }
+ public function __construct($config,$data = array())
+ {
+ DaemonEvent::__construct($config,$data);
+ $this->s_Menu_Name = _("System analysis");
+ $this->s_Event_Name = _("System analysis");
+ $this->s_Schedule_Action= "job_trigger_action_sysinfo";
+ $this->s_Trigger_Action = "gosa_trigger_action_sysinfo";
+ $this->s_Queued_Action = "trigger_action_sysinfo";
+ $this->s_Menu_Image = "plugins/goto/images/sysinfo.png";
+ $this->s_List_Image = "plugins/goto/images/sysinfo.png";
+ }
- public function execute()
- {
- DaemonEvent::execute();
+ public function execute()
+ {
+ DaemonEvent::execute();
- $display = $this->get_header();
+ $display = $this->get_header();
- $tmp = $this->data;
+ $tmp = $this->data;
- /* Check if target add dialog is open */
- if($this->is_target_list_open() && $this->is_new){
- return($this->get_target_add_list());
- }
+ /* Check if target add dialog is open */
+ if($this->is_target_list_open() && $this->is_new){
+ return($this->get_target_add_list());
+ }
- $smarty = get_smarty();
- $smarty->assign("data" , $this->data);
- $smarty->assign("target_list" , $this->get_target_list());
- $smarty->assign("is_new" , $this->is_new);
- $smarty->assign("timestamp" , $this->get_time_select());
- $display.= $smarty->fetch(get_template_path('DaemonEvent_sysinfo.tpl', TRUE, dirname(__FILE__)));
- $display.= $this->get_footer();
- return($display);
- }
+ $smarty = get_smarty();
+ $smarty->assign("data" , $this->data);
+ $smarty->assign("target_list" , $this->get_target_list());
+ $smarty->assign("is_new" , $this->is_new);
+ $smarty->assign("timestamp" , $this->get_time_select());
+ $display.= $smarty->fetch(get_template_path('DaemonEvent_sysinfo.tpl', TRUE, dirname(__FILE__)));
+ $display.= $this->get_footer();
+ return($display);
+ }
- public function save_object()
- {
- DaemonEvent::save_object();
- }
+ public function save_object()
+ {
+ DaemonEvent::save_object();
+ }
}
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
?>