summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a6b25cb)
raw | patch | inline | side by side (parent: a6b25cb)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 11 May 2006 09:42:12 +0000 (09:42 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 11 May 2006 09:42:12 +0000 (09:42 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3286 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/users/class_divListUsers.inc | patch | blob | history |
diff --git a/plugins/admin/users/class_divListUsers.inc b/plugins/admin/users/class_divListUsers.inc
index 786a276333e6b70f93f55d2ccecf343895ee5aa4..8f3ce23c31c8c45285d43b48a343c339ba877ee1 100644 (file)
var $Regex = "*";
/* CheckBoxes */
- var $ShowTemplates= 0;
- var $ShowFunctionalUsers= 1;
- var $ShowUnixUsers= 1;
- var $ShowMailUsers= 1;
- var $ShowSambaUsers= 1;
- var $ShowProxyUsers= 1;
+ var $ShowTemplates ;
+ var $ShowFunctionalUsers;
+ var $ShowUnixUsers;
+ var $ShowMailUsers;
+ var $ShowSambaUsers;
+ var $ShowProxyUsers;
/* Subsearch checkbox */
var $SubSearch = false;
$this->AddHeader(array("string"=>_("Properties"), "attach" => "style='width:152px;'"));
$this->AddHeader(array("string"=>_("Actions"), "attach" => "style='width:102px;border-right:0px;text-align:right;'"));
- $this->AddCheckBox("ShowTemplates" ,_("Select to see template pseudo users") ,_("Show templates") ,true);
- $this->AddCheckBox("ShowFunctionalUsers",_("Select to see users that have only a GOsa object"),_("Show functional users") ,true);
- $this->AddCheckBox("ShowUnixUsers" ,_("Select to see users that have posix settings") ,_("Show unix users") ,true);
- $this->AddCheckBox("ShowMailUsers" ,_("Select to see users that have mail settings") ,_("Show mail users") ,true);
- $this->AddCheckBox("ShowSambaUsers" ,_("Select to see users that have samba settings") ,_("Show samba users") ,true);
- $this->AddCheckBox("ShowProxyUsers" ,_("Select to see users that have proxy settings") ,_("Show proxy users") ,true);
+ $this->AddCheckBox("ShowTemplates" ,_("Select to see template pseudo users") ,_("Show templates") , false);
+ $this->AddCheckBox("ShowFunctionalUsers",_("Select to see users that have only a GOsa object"),_("Show functional users") , true);
+ $this->AddCheckBox("ShowUnixUsers" ,_("Select to see users that have posix settings") ,_("Show unix users") , true);
+ $this->AddCheckBox("ShowMailUsers" ,_("Select to see users that have mail settings") ,_("Show mail users") , true);
+ $this->AddCheckBox("ShowSambaUsers" ,_("Select to see users that have samba settings") ,_("Show samba users") , true);
+ $this->AddCheckBox("ShowProxyUsers" ,_("Select to see users that have proxy settings") ,_("Show proxy users") , true);
/* Add SubSearch checkbox */
$this->AddCheckBox(SEPERATOR);