From 6abb1375e4fc14e335670822b204cbd978589afb Mon Sep 17 00:00:00 2001 From: hickert Date: Tue, 3 Jun 2008 07:52:25 +0000 Subject: [PATCH] added activate new git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11161 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../events/class_DaemonEvent_activate_new.inc | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 gosa-plugins/goto/addons/goto/events/class_DaemonEvent_activate_new.inc diff --git a/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_activate_new.inc b/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_activate_new.inc new file mode 100644 index 000000000..ddf10555e --- /dev/null +++ b/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_activate_new.inc @@ -0,0 +1,79 @@ +s_Menu_Name = _("Activate new"); + $this->s_Event_Name = _("Activate new"); + $this->s_Schedule_Action = "job_trigger_activate_new"; + $this->s_Trigger_Action = "gosa_trigger_activate_new"; + $this->s_Queued_Action = "trigger_activate_new"; + $this->s_Menu_Image = "images/lists/unlocked.png"; + $this->s_List_Image = "images/lists/unlocked.png"; + } + + public function execute() + { + DaemonEvent::execute(); + return(""); + + $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_activate_new.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