parent = &$parent; $this->ui = get_userinfo(); /* Set list strings */ $this->SetTitle(_("List of acls")); $this->SetSummary(_("List of acls")); /* Result page will look like a headpage */ $this->SetHeadpageMode(); $this->EnableAplhabet (true); /* Disable buttonsm */ $this->EnableCloseButton(false); $this->EnableSaveButton (false); /* Dynamic action col */ $this->action_col_size = 120; /* Toggle all selected / deselected */ $chk = ""; /* set Page header */ $this->AddHeader(array("string"=> $chk, "attach"=>"style='width:20px;'")); $this->AddHeader(array("string"=>" ", "attach"=>"style='width:20px;'")); $this->AddHeader(array("string"=>_("Summary"))); $this->AddHeader(array("string"=>_("Actions"), "attach" => "style='width:".$this->action_col_size."px;border-right:0px;text-align:right;'")); /* Set dynamically filter checkboxes */ $this->set_filter_objectclasses(); /* Add SubSearch checkbox */ $this->AddCheckBox("SubSearch", msgPool::selectToView("","subsearch"), msgPool::selectToView("","subsearch_small"), false); /* Name ,Text ,Default , Connect with alphabet */ $this->AddRegex ("Regex", _("Display acls matching"),"*" , true); } function GenHeader() { /* Prepare departments, which are shown in the listbox on top of the listbox */ $options= ""; $Copy_Paste = ""; /* Get all departments within this subtree */ $ui= get_userinfo(); $first = ""; $found = FALSE; $base = $this->config->current['BASE']; /* Add base */ $tmp = array(); $tmp[] = array("dn"=>$this->config->current['BASE']); $tmp= array_merge($tmp,get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base, array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH)); $deps = array(); foreach($tmp as $tm){ $deps[$tm['dn']] = $tm['dn']; } /* Load possible departments */ $ui= get_userinfo(); $tdeps= $ui->get_module_departments("acl"); $ids = $this->config->idepartments; $first = ""; $found = FALSE; foreach($ids as $dep => $name){ if(isset($deps[$dep]) && in_array_ics($dep, $tdeps)){ /* Keep first base dn in mind, we could need this * info if no valid base was found */ if(empty($first)) { $first = $dep['dn']; } $value = $ids[$dep]; if ($this->selectedBase == $dep){ $found = TRUE; $options.= ""; } else { $options.= ""; } } } /* The currently used base is not visible with your acl setup. * Set base to first useable base. */ if(!$found){ $this->selectedBase = $first; } /* Allow copy & paste for roles */ $acl_all = $ui->has_complete_category_acls($this->selectedBase,"acl"); $acl = $ui->get_permissions($this->selectedBase,"acl/acl"); /* Add default header */ $listhead = MultiSelectWindow::get_default_header(); $listhead .= _("Base")." ". "  "; /* Create Layers menu */ $s = ".|"._("Actions")."|\n"; $s .= "..|". " "._("Create")."|\n"; /* Append create options */ if(preg_match("/c/",$acl)) { $s.= "...|". " "._("Role")."|new_acl_role|\n"; } /* Multiple options */ $s.= "..|---|\n"; $s.= "..|". " "._("Remove")."|"."remove_multiple|\n"; /* Add multiple copy & cut icons */ if(is_object($this->parent->CopyPasteHandler)){ $s.= "..|---|\n"; $s.= "..|". " "._("Copy")."|"."multiple_copy_systems|\n"; $s.= "..|". " "._("Cut")."|"."multiple_cut_systems|\n"; if($this->parent->CopyPasteHandler->entries_queued()){ $img = ""; $s.="..|".$img." "._("Paste")."|editPaste|\n"; }else{ $img = ""; $s.="..|".$img." "._("Paste")."\n"; } } /* Add snapshot icons */ if(preg_match("/(c.*w|w.*c)/",$acl_all)){ $str = $this->get_snapshot_header(TRUE) ; if(!empty($str)){ $s .= "..|---|\n"; $s .= $str; } } $this->SetDropDownHeaderMenu($s); $this->SetListHeader($listhead); } /* so some basic settings */ function execute() { $this->ClearElementsList(); $this->GenHeader(); } function setEntries($list) { foreach($list as $key => $acl_entry){ /* Get copy & paste icon */ $acl = $this->ui->get_permissions($acl_entry['dn'],"acl/acl"); $acl_all = $this->ui->has_complete_category_acls($acl_entry['dn'],"acl"); $action = ""; if(in_array("gosaRole",$acl_entry['objectClass'])){ /* Role handling */ $editlink = "%s"; $list_left_icon = ""._("Role").""; $cn = htmlentities(utf8_decode($acl_entry['cn'][0])) ; if(isset($acl_entry['description'][0])){ $cn .= " [".$acl_entry['description'][0]."]"; } /* Add copy & paste handler */ if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){ $action.= " "; $action.= " "; } /* Add actions depending on acls */ if(preg_match("/r/", $acl)){ $action.= ""; } /* Add snapshot functionality */ if(preg_match("/(c.*w|w.*c)/", $acl_all)){ $action.= $this->GetSnapShotActions($acl_entry['dn']); } if(preg_match("/d/", $acl)){ $action.= ""; } }else{ /* Acl handling */ $editlink = "%s"; $list_left_icon = ""._("ACL").""; $cn = htmlentities(utf8_decode($acl_entry['dn'])); /* Add actions depending on acls */ if(preg_match("/r/", $acl)){ $action.= ""; } if(preg_match("/d/", $acl)){ $action.= ""; } } if(in_array("gosaRole",$acl_entry['objectClass'])){ $field0 = array("string" => "" , "attach" => "style='width:20px;'"); }else{ $field0 = array("string" => "", "attach" => "style='width:20px;'"); } /* Cutted objects should be displayed in light grey */ $display = $cn; if($this->parent->CopyPasteHandler){ foreach($this->parent->CopyPasteHandler->queue as $queue_key => $queue_data){ if($queue_data['dn'] == $acl_entry['dn']) { $display = "".$display.""; break; } } } $field1 = array("string" => $list_left_icon, "attach"=> "style='text-align:center;width:20px;'"); $field2 = array("string" => sprintf($editlink,$key,$display)." ","attach" => ""); $field3 = array("string" => preg_replace("/%KEY%/",$key,$action), "attach"=> "style='text-align:right;width:".$this->action_col_size."px;border-right:0px;'"); $this->AddElement(array($field0,$field1,$field2,$field3)); } } function Save() { MultiSelectWindow :: Save(); } function save_object() { /* Save automatic created POSTs like regex, checkboxes */ MultiSelectWindow::save_object(); } /* Add some additional checkboxes to the filter part, this should be generated dynamically. */ function set_filter_objectclasses() { } /* Return objectClass names used in filter part */ function get_filter_objectclasses() { return(array("gosaAccount","gosaDepartment")); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>