Code

Fixed spelling of several properties and added missing ones
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 11 May 2010 08:46:01 +0000 (08:46 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 11 May 2010 08:46:01 +0000 (08:46 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18346 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/opengroupware/personal/connectivity/opengroupware/class_opengwAccount.inc

index 6467c44c6a193531ca6d797e474895345ecad8ef..571924e57f26d2477eef2482ae3b9b1fbc7e2832 100644 (file)
@@ -347,12 +347,52 @@ class opengwAccount extends plugin
                     "plCategory"    => array("users"),
                     "plOptions"       => array(),
 
+                    "plProperties" => array(
+                        array(
+                            "name"          => "datahost",
+                            "type"          => "string",
+                            "default"       => "",
+                            "description"   => _("The server/hostname to use for OpenGroupware connections."),
+                            "check"         => "",
+                            "migrate"       => "",
+                            "group"         => "OpenGroupware",
+                            "mandatory"     => FALSE),
+                        array(
+                            "name"          => "password",
+                            "type"          => "string",
+                            "default"       => "",
+                            "description"   => _("The password to use for OpenGroupware connections."),
+                            "check"         => "",
+                            "migrate"       => "",
+                            "group"         => "OpenGroupware",
+                            "mandatory"     => FALSE),
+                        array(
+                            "name"          => "username",
+                            "type"          => "string",
+                            "default"       => "",
+                            "description"   => _("The username to use for OpenGroupware connections."),
+                            "check"         => "",
+                            "migrate"       => "",
+                            "group"         => "OpenGroupware",
+                            "mandatory"     => FALSE),
+                        array(
+                            "name"          => "database",
+                            "type"          => "string",
+                            "default"       => "",
+                            "description"   => _("The database name to use for OpenGroupware connections."),
+                            "check"         => "",
+                            "migrate"       => "",
+                            "group"         => "OpenGroupware",
+                            "mandatory"     => FALSE),
+                        ),
+
+
                     "plProvidedAcls"  => array(
-                        "LocationTeam"  => _("Location team"),
-                        "TemplateUser"  => _("Template user"),
-                        "Locked"        => _("Locked"),
-                        "Teams"         => _("Teams"))
-                    ));
+                            "LocationTeam"  => _("Location team"),
+                            "TemplateUser"  => _("Template user"),
+                            "Locked"        => _("Locked"),
+                            "Teams"         => _("Teams"))
+                        ));
     }
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: