summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8843e71)
raw | patch | inline | side by side (parent: 8843e71)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 3 Jun 2008 07:52:25 +0000 (07:52 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 3 Jun 2008 07:52:25 +0000 (07:52 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11161 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/addons/goto/events/class_DaemonEvent_activate_new.inc | [new file with mode: 0644] | patch | blob |
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
--- /dev/null
@@ -0,0 +1,79 @@
+<?php
+/*
+ * This code is part of GOsa (http://www.gosa-project.org)
+ * Copyright (C) 2003-2008 GONICUS GmbH
+ *
+ * ID: $$Id: class_DaemonEvent_activate_new.inc 10977 2008-05-21 08:25:46Z cajus $$
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+class DaemonEvent_activate_new extends DaemonEvent
+{
+ var $visible_for = HIDDEN_EVENT;
+
+ var $attributes = array("dhcp","ip","fqdn","ogroup","base","mac");
+
+ var $dhcp = "";
+ var $ip = "";
+ var $fqdn = "";
+ var $ogroup ="";
+ var $base = "";
+ var $mac ="";
+
+
+ public function __construct($config,$data = array())
+ {
+ DaemonEvent::__construct($config,$data);
+ $this->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:
+?>