AddCheckBox */ var $ShowPrimaryGroups; var $ShowSambaGroups; var $ShowApplicationGroups; var $ShowMailGroups; var $ShowFunctionalGroups; /* Subsearch checkbox */ var $SubSearch = false; var $parent ; var $ui ; function divListGroup ($config,$parent) { MultiSelectWindow::MultiSelectWindow($config, "Groups", "groups"); $this->parent = $parent; $this->ui = get_userinfo(); /* Set list strings */ $this->SetTitle(_("List of groups")); $this->SetSummary(_("List of groups")); $this->EnableAplhabet (true); /* Result page will look like a headpage */ $this->SetHeadpageMode(); $this->SetInformation(_("This menu allows you to add, edit and remove selected groups. You may want to use the range selector on top of the group listbox, when working with a large number of groups.")); /* Disable buttonsm */ $this->EnableCloseButton(false); $this->EnableSaveButton (false); /* Dynamic action col, depending on snapshot icons */ $action_col_size = 70; if($this->parent->snapshotEnabled()){ $action_col_size += 38; } /* set Page header */ $this->AddHeader(array("string"=>" ","attach"=>"style='width:20px;'")); $this->AddHeader(array("string"=>_("Groupname / Department"))); $this->AddHeader(array("string"=>_("Properties"),"attach"=>"style='width:136px;'")); $this->AddHeader(array("string"=>_("Actions"),"attach"=>"style='width:".$action_col_size."px;border-right:0px;'")); /* Text ,Value ,Name ,Is selected */ $this->AddCheckBox("ShowPrimaryGroups", _("Select to see groups that are primary groups of users"), _("Show primary groups"), true); $this->AddCheckBox("ShowSambaGroups", _("Select to see groups that have samba groups mappings"), _("Show samba groups"), true); $this->AddCheckBox("ShowApplicationGroups", _("Select to see groups that have applications configured"), _("Show application groups"),true); $this->AddCheckBox("ShowMailGroups", _("Select to see groups that have mail settings"), _("Show mail groups"), true); $this->AddCheckBox("ShowFunctionalGroups", _("Select to see normal groups that have only functional aspects"), _("Show functional groups"), true); $this->AddCheckBox(SEPERATOR); /* Add SubSearch checkbox */ $this->AddCheckBox("SubSearch", _("Select to search within subtrees"), _("Ignore subtrees"), false); /* Name ,Text ,Default , Connect with alphabet */ $this->AddRegex ("Regex", _("Regular expression for matching group names"), "*" , true); $this->AddRegex ("UserRegex", _("User name of which groups are shown"), "*" , false, "images/search_user.png"); } function GenHeader() { /* Prepare departments, which are shown in the listbox on top of the listbox */ $options= ""; /* Get all departments within this subtree */ $base = $this->config->current['BASE']; $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base, array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH); /* Load possible departments */ $ui= get_userinfo(); $tdeps= $ui->get_module_departments("groups"); $ids = $this->config->idepartments; foreach($deps as $dep){ if(isset($ids[$dep['dn']]) && in_array_ics($dep['dn'], $tdeps)){ $value = $ids[$dep['dn']]; if ($this->selectedBase == $dep['dn']){ $options.= ""; } else { $options.= ""; } } } $acls = $ui->get_permissions($this->selectedBase,"groups/group"); /* Get copy & paste icon */ if(preg_match("/w/",$acls) && $this->parent->CopyPasteHandler){ $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon(); }else{ $Copy_Paste =""; } // Managment $listhead = "
". "  ". "  ". "  ". "  ". "  "; if(preg_match("/c/",$acls) && preg_match("/w/",$acls)){ $listhead .= $this->get_snapshot_header($this->selectedBase); }else{ $listhead .= " "; } if(preg_match("/c/",$acls)) { $listhead.="  "; } $listhead.= $Copy_Paste. "  ". _("Base")." ". "  ". "
"; $this->SetListHeader($listhead); } function execute() { $this->ClearElementsList(); $this->GenHeader(); } function setEntries($groups) { // Defining Links $linkopen = "%s"; // image Buttons $editlink = "%s"; $userimg = "User"; /* Dynamic action col, depending on snapshot icons */ $action_col_size = 70; if($this->parent->snapshotEnabled()){ $action_col_size += 38; } /* Assign extension images */ $posiximg = ""; $mailimg = ""; $sambaimg = ""; $applimg = ""; $phoneimg = ""; $envimg = ""; // Space $empty = ""; // User and Template Images $editlink = "%s"; $ui = get_userinfo(); // Test Every Entry and generate divlist Array foreach($groups as $key => $val){ /* Create action icons - copy & paste icons */ $actions= ""; if(($this->parent->CopyPasteHandler) && preg_match("/w/",$ui->get_category_permissions($val['dn'],"group"))){ $actions.= " "; $actions.= " "; } if(preg_match("/r/",$ui->get_category_permissions($val['dn'],"groups"))){ $actions.= ""; } if(preg_match("/w/",$ui->get_permissions($val['dn'],"groups/group"))){ $actions.= $this->GetSnapShotActions($val['dn']); } if(preg_match("/d/",$ui->get_permissions($val['dn'],"groups/group"))){ $actions.= ""; } $posix=$mail=$samba=$appl=$phone=$enviro=$empty; if(isset($val['objectClass'])){ if(in_array("posixGroup", $val['objectClass'])) $posix = $posiximg; if(in_array("gosaMailAccount", $val['objectClass'])) $mail = $mailimg; if(in_array("sambaGroupMapping", $val['objectClass'])) $samba = $sambaimg; if(in_array("gosaApplicationGroup", $val['objectClass'])) $appl = $applimg; if(in_array("goFonPickupGroup", $val['objectClass'])) $phone = $phoneimg; if(in_array("gotoEnvironment", $val['objectClass'])) $enviro= $envimg; } $title = "title='".preg_replace('/ /', ' ', @LDAP::fix($val['dn']))."'"; if(!isset($val['description'][0])){ $desc = ""; }else{ $desc = " - [ ".$val['description'][0]." ]"; } /* FAIrelease tag from groupApplications */ if(isset($val['FAIrelease'][0])){ $desc .= " (".$val['FAIrelease'][0].")"; } $field1 = array("string" => sprintf($userimg,$val['dn']), "attach" => "style='text-align:center;width:20px;'"); $field2 = array("string" => sprintf($editlink,$key,($val['cn']['0'].$desc)), "attach" => "style='' ".$title); $field3 = array("string" => preg_replace("/%KEY%/", $key, $posix." ".$enviro." ".$mail." ".$samba." ".$appl." ".$phone), "attach" => "style='width:136px;'"); $field4 = array("string" => preg_replace("/%KEY%/", $key, $actions), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"); $this->AddElement(array($field1,$field2,$field3,$field4)); } } function Save() { MultiSelectWindow :: Save(); } function save_object() { /* Save automatic created POSTs like regex, checkboxes */ MultiSelectWindow::save_object(); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>