From: cajus Date: Thu, 6 Mar 2008 12:32:53 +0000 (+0000) Subject: Removed install X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=cf1669f7163857a9d4333cb625c4bd586a073a2e;p=gosa.git Removed install git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9386 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/goto/addons/goto/events/DaemonEvent_install.tpl b/gosa-plugins/goto/addons/goto/events/DaemonEvent_install.tpl deleted file mode 100644 index 40a62eb70..000000000 --- a/gosa-plugins/goto/addons/goto/events/DaemonEvent_install.tpl +++ /dev/null @@ -1,67 +0,0 @@ - -{if $is_new} - - - - - - -
- - - - - -
{t}Timestamp{/t}{$timestamp}
-
- - - - -
- {t}Target objects{/t} -
- {$target_list} -
-
- -{else} - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - -
{t}ID{/t}{$data.ID}
{t}Progress{/t}{$progress}
{t}Status{/t}{$status}
{t}Result{/t}{$data.RESULT}
{t}Target{/t}{$data.MACADDRESS}
{t}Timestamp{/t}{$timestamp}
-
- -
-
- -{/if} diff --git a/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_install.inc b/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_install.inc deleted file mode 100644 index 32d5aed11..000000000 --- a/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_install.inc +++ /dev/null @@ -1,82 +0,0 @@ -s_Menu_Name = _("Install"); - $this->s_Event_Name = _("Install"); - $this->s_Schedule_Action = "job_trigger_action_install"; - $this->s_Trigger_Action= "gosa_trigger_action_install"; - $this->s_Queued_Action= "trigger_action_install"; - $this->s_Menu_Image = "images/fai_small.png"; - $this->s_List_Image = "images/fai_small.png"; - - if(!$this->is_new()){ - if(isset($data['PROGRESS'])){ - $this->progress = $data['PROGRESS']; - } - if(isset($data['STATUS'])){ - $this->status = $data['STATUS']; - } - } - } - - 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("status" , $this->status); - $smarty->assign("progress" , $this->progress); - $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_install.tpl', TRUE, dirname(__FILE__))); - $display.= $this->get_footer(); - return($display); - } - - public function save() - { - $ret = DaemonEvent::save(); - return($ret); - } -} -// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: -?>