Code

Allow lock messages for multiple entries at once.
[gosa.git] / include / class_password-methods.inc
index f4a3c0b7291a6ec4a88f0814d67a91d74cc20309..9696df66d7a2994d09a8379d586fcc76a6904a1e 100644 (file)
@@ -106,6 +106,20 @@ class passwordMethod
   }
 
 
+  // Return true if this password method provides a configuration dialog
+  function is_configurable()
+  {
+    return FALSE;
+  }
+
+
+  // Provide a subdialog to configure a password method
+  function configure()
+  {
+    return "";
+  }
+
+
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>