Code

Updated copy & paste hanling for everal classes.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 10 Apr 2008 10:37:14 +0000 (10:37 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 10 Apr 2008 10:37:14 +0000 (10:37 +0000)
-Reenabled abort all button

git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10315 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/plugins/admin/acl/class_aclManagement.inc
gosa-core/plugins/admin/groups/class_groupManagement.inc
gosa-core/plugins/admin/ogroups/class_ogroupManagement.inc
gosa-core/plugins/admin/users/class_userManagement.inc
gosa-plugins/gofax/gofax/blocklists/class_blocklistManagement.inc
gosa-plugins/gofon/gofon/macro/class_gofonMacroManagement.inc
gosa-plugins/goto/admin/applications/class_applicationManagement.inc
gosa-plugins/goto/admin/devices/class_deviceManagement.inc
gosa-plugins/goto/admin/mimetypes/class_mimetypeManagement.inc
gosa-plugins/systems/admin/systems/class_systemManagement.inc

index d8a96080d7837adb4cb82fdfdcb9fffd77793f9a..d332ea3cbe564d0197676bf60eb4ae4b595951a6 100644 (file)
@@ -630,6 +630,9 @@ class aclManagement extends plugin
     if(!is_object($this->acltabs)){
       $this->DivListACL->save_object();
     }
+    if(is_object($this->CopyPasteHandler)){
+      $this->CopyPasteHandler->save_object();
+    }
   }
 
   /* A set of disabled and therefore overloaded functions. They are
index 3dbfd7db1a342e6f969854f5e678ec974f2f7615..b33b5f81f50cc6b3ff8bf7c4e842fee3f3a68def 100644 (file)
@@ -761,6 +761,9 @@ class groupManagement extends plugin
   function save_object()
   {
     $this->DivListGroup->save_object();
+    if(is_object($this->CopyPasteHandler)){
+      $this->CopyPasteHandler->save_object();
+    }
   }
 
 
index b2c383782a04f9583f535f84340baf559c35be49..8a0fd3dc7698d6fc658f9989dc9d4349a61937ce 100644 (file)
@@ -673,6 +673,9 @@ class ogroupManagement extends plugin
   function save_object()
   {
     $this->DivListOGroup->save_object();
+    if(is_object($this->CopyPasteHandler)){
+      $this->CopyPasteHandler->save_object();
+    }
   }
 
 }
index 7f20a5bd38a1be9367130544820ec61423cd0125..7f29d036c7fbc33c5b28a65e391d82bd676c2234 100644 (file)
@@ -1171,6 +1171,9 @@ class userManagement extends plugin
     if(!is_object($this->usertab)){
       $this->DivListUsers->save_object();
     }
+    if(is_object($this->CopyPasteHandler)){
+      $this->CopyPasteHandler->save_object();
+    }
   }
 
     
index 9d5679a073343e8ac9fca9e4affd8a540d4a480d..cfe2f55e12fd5728f53995f28c69b842f8f9433c 100644 (file)
@@ -403,6 +403,9 @@ class blocklist extends plugin
   function save_object()
   {
     $this->DivListBlocklist->save_object();
+    if(is_object($this->CopyPasteHandler)){
+      $this->CopyPasteHandler->save_object();
+    }
   }
 
 
index da165669290e1518bbf1fc8dc3d8b5ef4574b02b..007cc9a7f26060c5698d48d8ccf6346f0aeddab9 100644 (file)
@@ -528,6 +528,9 @@ class goFonMacro extends plugin
   function save_object()
   {
     $this->DivListMacro->save_object();
+    if(is_object($this->CopyPasteHandler)){
+      $this->CopyPasteHandler->save_object();
+    }
   }
 
 
index 31483740235a8ed30e390a64e2e97af0b059d1f8..d144f45c3d9a9e179bd59a8f970e91a92e6b287c 100644 (file)
@@ -628,8 +628,12 @@ class applicationManagement extends plugin
     }
   }
 
-  function save_object() {
+  function save_object() 
+  {
     $this->DivListApplication->save_object();
+    if(is_object($this->CopyPasteHandler)){
+      $this->CopyPasteHandler->save_object();
+    }
   }
 
   function check() {}
index 3d4b4131b890051016c14378e7533a15daf303e5..6972caefa8d1069ca5fc529179b6cf5a64d35cb3 100644 (file)
@@ -414,6 +414,9 @@ class deviceManagement extends plugin
 
   function save_object() {
     $this->DivListDevices->save_object();
+    if(is_object($this->CopyPasteHandler)){
+      $this->CopyPasteHandler->save_object();
+    }
   }
 
 
index 34b2268112f10f7fd7b4f7fc1262dfde41b52a28..44fada93940f0eb0d48d640f2bb5c00c4dfd0e0f 100644 (file)
@@ -648,6 +648,9 @@ class mimetypeManagement extends plugin
 
   function save_object() {
     $this->DivListMimeTypes->save_object();
+    if(is_object($this->CopyPasteHandler)){
+      $this->CopyPasteHandler->save_object();
+    }
   }
 
   function check() {}
index 48ce658dae82e4357985786f514ec823366889ec..5aa58479fdff3d82c97834abfacb109f00bf7283 100644 (file)
@@ -1086,6 +1086,9 @@ class systems extends plugin
   function save_object()
   {
     $this->DivListSystem->save_object();
+    if(is_object($this->CopyPasteHandler)){
+      $this->CopyPasteHandler->save_object();
+    }
   }