AddCheckBox */ var $UserGroups ; var $GroupGroups ; var $ApplicationGroups ; var $DepartmentGroups ; var $ServerGroups ; var $WorkstationGroups ; var $TerminalGroups ; var $PrinterGroups ; var $PhoneGroups ; /* Subsearch checkbox */ var $SubSearch ; var $parent ; var $ui ; function divListOGroup ($config,$parent) { MultiSelectWindow::MultiSelectWindow($config, "OGroups", "ogroups"); $this->parent = $parent; $this->ui = get_userinfo(); /* Set list strings */ $this->SetTitle(_("List of object groups")); $this->SetSummary(_("List of object groups")); $this->EnableAplhabet(true); /* Result page will look like a headpage */ $this->SetHeadpageMode(); $this->SetInformation(_("This menu allows you to add, edit or 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='text-align:center;width:20px;'")); $this->AddHeader(array("string" => _("Name of object groups")." / "._("Departments"), "attach" => "style=''")); $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-align:right;'")); /* Text ,Value ,Name ,Is selected */ $this->AddCheckBox("UserGroups" , _("Select to see groups containing users") , _("Show groups containing users"), true); $this->AddCheckBox("GroupGroups" , _("Select to see groups containing groups") , _("Show groups containing groups"), true); $this->AddCheckBox("ApplicationGroups", _("Select to see groups containing applications"), _("Show groups containing applications"), true); $this->AddCheckBox("DepartmentGroups" , _("Select to see groups containing departments") , _("Show groups containing departments"), true); $this->AddCheckBox("ServerGroups" , _("Select to see groups containing servers") , _("Show groups containing servers"), true); $this->AddCheckBox("WorkstationGroups", _("Select to see groups containing workstations"), _("Show groups containing workstations"), true); $this->AddCheckBox("TerminalGroups" , _("Select to see groups containing terminals") , _("Show groups containing terminals"), true); $this->AddCheckBox("PrinterGroups" , _("Select to see groups containing printer") , _("Show groups containing printer"), true); $this->AddCheckBox("PhoneGroups" , _("Select to see groups containing phones") , _("Show groups containing phones"), true); /* Add SubSearch checkbox */ $this->AddCheckBox(SEPERATOR); $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); } 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("ogroups"); $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.= ""; } } } /* Get copy & paste icon */ if(preg_match("/w/",$ui->get_permissions($this->selectedBase,"ogroups/ogroup")) && $this->parent->CopyPasteHandler){ $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon(); }else{ $Copy_Paste =""; } // Managment $listhead = "
". "  ". "  ". "  ". "  ". "  "; $acls = $ui->get_permissions($this->selectedBase,"ogroups/ogroup"); 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($list) { /* Add Copy & Paste buttons if copy&paste is enabled */ // Defining Links $linkopen = "%s"; $editlink = "%s"; $userimg = "User"; $mailimg = "M"; $empty = ""; /* Dynamic action col, depending on snapshot icons */ $action_col_size = 70; if($this->parent->snapshotEnabled()){ $action_col_size += 38; } $ui = get_userinfo(); // Assigning ogroups foreach($list as $key => $val){ /* Create action icons */ $actions= ""; if($this->parent->CopyPasteHandler && preg_match("/w/",$ui->get_category_permissions($val['dn'],"ogroups"))){ $actions.= " "; $actions.= " "; } $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'],"ogroups/ogroup"))) { $actions.= ""; }else{ $action.= " "; } if(isset($val['mail'])){ $mail = $mailimg; }else{ $mail = $empty; } $title = "title='".preg_replace('/ /', ' ', @LDAP::fix($val['dn']))."'"; if(!isset($val['description'][0])){ $desc = ""; }else{ $desc = " - [ ".$val['description'][0]." ]"; } $field1 = array("string" => ""._("Object group")."", "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, $this->parent->convert_list($val))." ".$mail, "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: ?>