From 134dc4679847faabc2cd8d422c7ea180b7002764 Mon Sep 17 00:00:00 2001 From: cajus Date: Mon, 3 Mar 2008 16:58:07 +0000 Subject: [PATCH] Added notify event git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9267 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../gotomasses/events/DaemonEvent_notify.tpl | 63 +++++++++++++++++++ .../events/class_DaemonEvent_notify.inc | 45 +++++++++++++ 2 files changed, 108 insertions(+) create mode 100644 gosa-plugins/goto/addons/gotomasses/events/DaemonEvent_notify.tpl create mode 100644 gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_notify.inc diff --git a/gosa-plugins/goto/addons/gotomasses/events/DaemonEvent_notify.tpl b/gosa-plugins/goto/addons/gotomasses/events/DaemonEvent_notify.tpl new file mode 100644 index 000000000..4e3fc127d --- /dev/null +++ b/gosa-plugins/goto/addons/gotomasses/events/DaemonEvent_notify.tpl @@ -0,0 +1,63 @@ + +{if $is_new} + + + + + + +
+ + + + + +
{t}Timestamp{/t}{$timestamp}
+
+ + + + +
+ {t}Target objects{/t} +
+ {$target_list} +
+
+ +{else} + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +
{t}ID{/t}{$data.ID}
{t}Status{/t}{$data.STATUS}
{t}Result{/t}{$data.RESULT}
{t}Target{/t}{$data.MACADDRESS}
{t}Timestamp{/t}{$timestamp}
+
+ +
+
+ +{/if} diff --git a/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_notify.inc b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_notify.inc new file mode 100644 index 000000000..81cf12228 --- /dev/null +++ b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_notify.inc @@ -0,0 +1,45 @@ +s_Menu_Name = _("Notify"); + $this->s_Event_Name = _("Notify"); + $this->s_Schedule_Action = "job_trigger_action_notify"; + $this->s_Trigger_Action= "job_trigger_action_notify"; + $this->s_Queued_Action= "trigger_action_notify"; + $this->s_Menu_Image = "images/status_stopped.png"; + $this->s_List_Image = "images/status_stopped.png"; + } + + public function execute() + { + DaemonEvent::execute(); + + $display = $this->get_header(); + + $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()); + } + + $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_notify.tpl', TRUE, dirname(__FILE__))); + $display.= $this->get_footer(); + return($display); + } + + public function save_object() + { + DaemonEvent::save_object(); + } +} +// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: +?> -- 2.30.2