From: hickert Date: Fri, 29 Feb 2008 15:01:53 +0000 (+0000) Subject: Added some additional jobs X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d26eb5dafe1d9bb8f52c2188be0760a430c9eaea;p=gosa.git Added some additional jobs git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9218 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/goto/addons/gotomasses/events/DaemonEvent_installation_activation.tpl b/gosa-plugins/goto/addons/gotomasses/events/DaemonEvent_installation_activation.tpl new file mode 100644 index 000000000..4e3fc127d --- /dev/null +++ b/gosa-plugins/goto/addons/gotomasses/events/DaemonEvent_installation_activation.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/DaemonEvent_reload_ldap_config.tpl b/gosa-plugins/goto/addons/gotomasses/events/DaemonEvent_reload_ldap_config.tpl new file mode 100644 index 000000000..4e3fc127d --- /dev/null +++ b/gosa-plugins/goto/addons/gotomasses/events/DaemonEvent_reload_ldap_config.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_installation_activation.inc b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_installation_activation.inc new file mode 100644 index 000000000..f5aff40a6 --- /dev/null +++ b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_installation_activation.inc @@ -0,0 +1,47 @@ +s_Menu_Name = _("Installation activation"); + $this->s_Event_Name = _("Installation activation"); + $this->s_Schedule_Action = "job_set_activated_for_installation"; + $this->s_Trigger_Action = "job_set_activated_for_installation"; + $this->s_Queued_Action = "set_activated_for_installation"; + $this->s_Menu_Image = "images/true.png"; + $this->s_List_Image = "images/true.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_installation_activation.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: +?> diff --git a/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_reload_ldap_config.inc b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_reload_ldap_config.inc new file mode 100644 index 000000000..0401207ef --- /dev/null +++ b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_reload_ldap_config.inc @@ -0,0 +1,46 @@ +s_Menu_Name = _("Reload ldap config"); + $this->s_Event_Name = _("Reload ldap config"); + $this->s_Schedule_Action= "job_reload_ldap_config"; + $this->s_Trigger_Action = "job_reload_ldap_config"; + $this->s_Queued_Action = "reload_ldap_config"; + $this->s_Menu_Image = "images/edit.png"; + $this->s_List_Image = "images/edit.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_wakeup.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: +?>