summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 50e1d9b)
raw | patch | inline | side by side (parent: 50e1d9b)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 29 Feb 2008 06:34:37 +0000 (06:34 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 29 Feb 2008 06:34:37 +0000 (06:34 +0000) |
-Add events for new devices
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9197 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9197 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/systems/admin/systems/class_systemManagement.inc | patch | blob | history |
diff --git a/gosa-plugins/systems/admin/systems/class_systemManagement.inc b/gosa-plugins/systems/admin/systems/class_systemManagement.inc
index e2d733c232b0d5b5536008534d2d7b4fc957e2c2..98128010c461bdb376a1375d874c7c3760d8c2f9 100644 (file)
}
$this->systab->save();
+
+ /* Get macAddress to be able to an installation event
+ */
+ if($this->systab instanceof ArpNewDeviceTabs || session::is_set('SelectedSystemType')){
+ $events = DaemonEvent::get_event_types();
+
+ /* Get mac of currently edited entry */
+ $mac = "";
+ if($this->systab instanceof ArpNewDeviceTabs){
+ $mac = $this->systab->by_object['ArpNewDevice']->netConfigDNS->macAddress;
+ }else{
+ foreach(array("workgeneric","termgeneric","servgeneric") as $type){
+ if(isset($this->systab->by_object[$type]->netConfigDNS->macAddress)){
+ $mac = $this->systab->by_object[$type]->netConfigDNS->macAddress;
+ break;
+ }
+ }
+ }
+
+ /* Add installation event
+ */
+ if(!empty($mac) && isset($events['BY_CLASS']['DaemonEvent_install'])){
+ $evt = $events['BY_CLASS']['DaemonEvent_install'];
+ $tmp = new $evt['CLASS_NAME']($this->config);
+ $tmp->add_targets(array($mac));
+ $header = $tmp->get_trigger_action();
+ $data = $tmp->save();
+ $data['macaddress'] = $mac;
+ $o_queue = new gosaSupportDaemon();
+ $o_queue->send_data($header,$mac,$data,TRUE);
+ if($o_queue->is_error()){
+ msg_dialog::display(_("Daemon"),sprintf(_("Something went wrong while talking to the daemon: %s."),
+ $o_queue->get_error()),ERROR_DIALOG);
+ }
+ }
+ }
if(session::is_set('SelectedSystemType')){
session::un_set('SelectedSystemType');