parent = $parent; $this->ui = get_userinfo(); /* Set list strings */ $this->SetTitle(_("List of acl")); $this->SetSummary(_("List of acls")); /* Result page will look like a headpage */ $this->SetHeadpageMode(); $this->SetInformation(_("This menu allows you to edit and delete selected acls.")); $this->EnableAplhabet (true); /* Disable buttonsm */ $this->EnableCloseButton(false); $this->EnableSaveButton (false); /* Dynamic action col */ $this->action_col_size = 45; /* set Page header */ $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(SEPERATOR); $this->AddCheckBox("SubSearch", _("Select to search within subtrees"), _("Ignore subtrees"), false); /* Name ,Text ,Default , Connect with alphabet */ $this->AddRegex ("Regex", _("Display acls matching"),"Not implemented yet" , 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))", "acl", $base, array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH); /* Load possible departments */ $ui = get_userinfo(); $tdeps = $ui->get_module_departments("acl"); $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 */ $acl = $ui->get_permissions($this->selectedBase,"acl/aclManagement"); /* Create header with selected base */ $listhead = "
". "  ". "  ". "  ". "  ". "  "; $listhead .= _("Base")." ". "  ". "
"; $this->SetListHeader($listhead); } /* so some basic settings */ function execute() { $this->ClearElementsList(); $this->GenHeader(); } function setEntries($list) { $list_left_icon = ""._("Acl").""; $editlink = "%s"; foreach($list as $key => $acl_entry){ /* Get copy & paste icon */ $acl = $this->ui->get_permissions($acl_entry['dn'],"acl/aclManagement"); $action = ""; /* Add actions depending on acls */ if(preg_match("/r/", $acl)){ $action.= ""; } if(preg_match("/d/", $acl)){ $action.= ""; } $field1 = array("string" => $list_left_icon, "attach"=> "style='text-align:center;width:20px;'"); $field2 = array("string" => sprintf($editlink,$key,htmlentities(utf8_decode($acl_entry['dn'])))." ","attach" => ""); $field3 = array("string" => preg_replace("/%KEY%/",$key,$action), "attach"=> "style='text-align:center;width:".$this->action_col_size."px;border-right:0px;'"); $this->AddElement(array($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() { #FIXME This should be created dynamically $this->gosaAccount = true; $this->AddCheckBox("gosaAccount", _("Select to display users"), _("Display user") , true); $this->gosaDepartment = true; $this->AddCheckBox("gosaDepartment", _("Select to display departments"), _("Display departments"), true); } /* 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: ?>