From: hickert Date: Tue, 11 May 2010 08:46:01 +0000 (+0000) Subject: Fixed spelling of several properties and added missing ones X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=38ade3c4df5dcd708348e7da4f4d3205ef6524c6;p=gosa.git Fixed spelling of several properties and added missing ones git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18346 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/opengroupware/personal/connectivity/opengroupware/class_opengwAccount.inc b/gosa-plugins/opengroupware/personal/connectivity/opengroupware/class_opengwAccount.inc index 6467c44c6..571924e57 100644 --- a/gosa-plugins/opengroupware/personal/connectivity/opengroupware/class_opengwAccount.inc +++ b/gosa-plugins/opengroupware/personal/connectivity/opengroupware/class_opengwAccount.inc @@ -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: