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() { /* Get all departments within this subtree */ $ui= get_userinfo(); $base = $this->config->current['BASE']; $options = $this->create_department_list($this->module); /* 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"; /* Append create options */ if(preg_match("/c/",$acl)) { $s .= "..|". " "._("Create")."|\n"; $s.= "...|". " "._("Role")."|new_acl_role|\n"; } $s.= "..|". " "._("Remove")."|"."remove_multiple|\n"; /* Add Copy & Paste header */ $s .= $this->parent->get_copypaste_header($this->selectedBase,$this->module); $s .= $this->parent->get_snapshot_header($this->selectedBase,$this->module); $this->SetDropDownHeaderMenu($s); $this->SetListHeader($listhead); } /* so some basic settings */ function execute() { $this->ClearElementsList(); $this->GenHeader(); } function setEntries($list) { $ui = get_userinfo(); foreach($list as $key => $acl_entry){ $action = ""; /* Handle ACL role entries */ if(in_array("gosaRole",$acl_entry['objectClass'])){ $acl = $this->ui->get_permissions($acl_entry['dn'],"acl/aclrole"); $acl_all = $this->ui->has_complete_category_acls($acl_entry['dn'],"acl"); $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 & cut functionality */ $action.= $this->parent->get_copypaste_action($acl_entry['dn'],"acl","aclRole"); /* Add actions depending on acls */ if(preg_match("/r/", $acl)){ $action.= ""; } /* Add snapshot functionality */ $action.= $this->parent->get_snapshot_action($acl_entry['dn'],"acl"); }else{ /* Handle non-role ACL entries */ $acl = $this->ui->get_permissions($acl_entry['dn'],"acl/acl"); $acl_all = $this->ui->has_complete_category_acls($acl_entry['dn'],"acl"); /* Acl handling */ $editlink = "%s"; $list_left_icon = ""._("ACL").""; $cn = preg_replace('/\\\\,/', ',', LDAP::fix($acl_entry['dn'])); /* Add actions depending on acls */ if(preg_match("/r/", $acl)){ $action.= ""; } } /* Add delete actions */ if(preg_match("/d/", $acl)){ $action.= ""; } /* Add a checkbox in front of each entry */ $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: ?>