Code

Fixed several class definition warnings
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 21 Sep 2007 06:07:48 +0000 (06:07 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 21 Sep 2007 06:07:48 +0000 (06:07 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@7363 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/addons/godfs/class_dfsgeneric.inc
plugins/addons/godfs/tabs_dfs.inc
plugins/addons/gotomasses/class_goto_task.inc
plugins/admin/acl/tabs_acl.inc
plugins/admin/acl/tabs_acl_role.inc
plugins/admin/departments/tabs_department.inc
plugins/admin/ogroups/tabs_ogroups.inc
plugins/admin/systems/class_glpiPrinterCartridges.inc
plugins/gofon/conference/tabs_conference.inc

index b8c3f4da63eed9ddaf26ad7071b6938e453a2d3e..c3941b5f89c999e6b2a24c39f763fb0cf471fbca 100644 (file)
@@ -76,7 +76,8 @@
       #, dirname(__FILE__))));
     }
 
-    function check() {
+    function check() 
+       {
       plugin::check(); 
       $message = array();
 
index 026f55aebcb9580040c3354a822d0b6cb950df0d..ef5950ebe320475b35ab8279bb0052ce25a31009 100644 (file)
@@ -19,7 +19,7 @@ class dfstabs extends tabs {
 
 
 
-  function check() {
+  function check($ignore_account= FALSE) {
     return (tabs::check(TRUE));
   }
 
index 589fefe88e13609f2f57abd15f09b2cde347e4a7..27684b0947b3e3a71d9522cbca4a4bb49d37b9ed 100644 (file)
@@ -340,9 +340,9 @@ class goto_task extends plugin
   
 
   /* Map acl function, to be able to use plugin::save_object() */
-  function acl_is_writeable($str)
+  function acl_is_writeable($attribute,$skip_write = FALSE)
   {
-    return($this->parent->acl_is_writeable($str));
+    return($this->parent->acl_is_writeable($attribute,$skip_write));
   }
 
 
index 0cbd1d798ffe16d7b4b55e8e402c9d75e357f7b6..db87979fa653fdf3eada5f5f31af18864255d288 100644 (file)
@@ -48,7 +48,7 @@ class acltab extends tabs
     return $ret;
   }
 
-  function save_object()
+  function save_object($ignore_account= FALSE)
   {
     tabs::save_object();
   }
index a4a08dcdef0e8fbd76f9781fb00675f7e7fc2f35..b1132357d14828b93a7d2bb638e3e95c3b9adc14 100644 (file)
@@ -38,7 +38,7 @@ class aclroletab extends tabs
     return $ret;
   }
 
-  function save_object()
+  function save_object($ignore_account= FALSE)
   {
     tabs::save_object();
   }
index 68118b318e6f636c703c06eb2c3f90e61fbd7af5..cf04bd29b5d4721ba38fd10a1d275c149950694d 100644 (file)
@@ -13,7 +13,7 @@ class deptabs extends tabs
     $this->addSpecialTabs();
   }
 
-  function check()
+  function check($ignore_account= FALSE)
   {
     return (tabs::check(TRUE));
   }
index 970adbcb1252bfc040ad1e7846f5dc696f35e900..b87ff78f69b42b48ad469b1bad161d03e55b5b38 100644 (file)
@@ -230,7 +230,7 @@ class ogrouptabs extends tabs
   }
 
 
-  function check()
+  function check($ignore_account= FALSE)
   {
     return (tabs::check(FALSE));
   }
index 85e0805c6f4e966ea0f8c81804651f66751a4d83..3d9d6301001a0e5dbe7b8ff89567c44aa178f7ed 100644 (file)
@@ -278,7 +278,7 @@ class glpiPrinterCartridges extends plugin
   /* This function cehck all created devices if you wan't to create device specific check 
       use >>if($attr['device_type']=="moboard")<< to create a device type depending check
    */
-  function check($attr)
+  function check()
   {
     /* Call common method to give check the hook */
     $message= plugin::check();
index 438b349f6b2efa0bcaf08205583aa9a20d296a5e..5b58065eead3a8aa07c7d8e33f2e410a37897f5b 100644 (file)
@@ -13,7 +13,7 @@ class conferencetabs extends tabs
     $this->addSpecialTabs();
   }
 
-  function check()
+  function check($ignore_account= FALSE)
   {
        return (tabs::check(TRUE));
   }