X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-plugins%2Fgoto%2Fadmin%2Fmimetypes%2Fclass_divListMimeTypes.inc;h=7c80b55ed5c53e33785bfd51bc71912689c00d7f;hb=d075a8c302c3b5b967bc70d7943e87f0f9c019a4;hp=79c2ff8452b0c2ca2ceaab6367166ab78c177a0b;hpb=cf072aa1522578f398a10c523ae5bb628f174d9b;p=gosa.git diff --git a/gosa-plugins/goto/admin/mimetypes/class_divListMimeTypes.inc b/gosa-plugins/goto/admin/mimetypes/class_divListMimeTypes.inc index 79c2ff845..7c80b55ed 100644 --- a/gosa-plugins/goto/admin/mimetypes/class_divListMimeTypes.inc +++ b/gosa-plugins/goto/admin/mimetypes/class_divListMimeTypes.inc @@ -42,7 +42,7 @@ class divListMimeTypes extends MultiSelectWindow } /* Toggle all selected / deselected */ - $chk = ""; /* set Page header */ @@ -78,66 +78,16 @@ class divListMimeTypes extends MultiSelectWindow /* Create list header, with create / copy & paste etc*/ function GenHeader() { - - /* Add default header */ - $listhead = MultiSelectWindow::get_default_header(); + $listhead = MultiSelectWindow::get_default_header(false); if(!$this->parent->IsReleaseManagementActivated()){ - /* Prepare departments, - which are shown in the listbox on top of the listbox - */ - $options= ""; - /* 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($this->module); - $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; - } + $options = $this->create_department_list($this->module); /* And at least add a department selection box */ $listhead .= _("Base")." ". @@ -148,59 +98,34 @@ class divListMimeTypes extends MultiSelectWindow /* Get acls */ $ui = get_userinfo(); - $acl = $ui->get_permissions("cn=dummy,".$this->parent->mime_base,"mimetypes/mimetype"); + $acl = $ui->get_permissions($this->parent->mime_base,"mimetypes/mimetype"); $acl_all = $ui->has_complete_category_acls($this->parent->mime_base,"mimetypes") ; /* If this is true we add an additional seperator. Just look a few lines below */ $add_sep = false; - /* Get copy & paste icon */ - $Copy_Paste =""; - if(preg_match("/(c.*w|w.*c)/",$acl_all) && $this->parent->CopyPasteHandler){ - $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon(); - $add_sep = true; - } - - /* Create Layers menu */ $s = ".|"._("Actions")."|\n"; - $s .= "..|". - " "._("Create")."|\n"; /* Append create options */ if(preg_match("/c/",$acl)) { + $s .= "..|". + " "._("Create")."|\n"; $s.= "...|". " "._("Mime type")."|mime_new|\n"; + $s.= "..|---|\n"; } /* Multiple options */ - $s.= "..|---|\n"; $s.= "..|". " "._("Remove")."|"."remove_multiple|\n"; - /* Add multiple copy & cut icons */ - if(is_object($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){ - $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 Copy & Paste header */ + $s .= $this->parent->get_copypaste_header($this->selectedBase,$this->module); /* Add snapshot icons */ - if(preg_match("/(c.*w|w.*c)/",$acl_all)){ - $s .= "..|---|\n"; - $s .= $this->get_snapshot_header(TRUE); - } + $s .= $this->parent->get_snapshot_header($this->selectedBase,$this->module); $this->SetDropDownHeaderMenu($s); $this->SetListHeader($listhead); @@ -222,7 +147,6 @@ class divListMimeTypes extends MultiSelectWindow ********************/ /* Create links */ - $linkopen = "%s"; $editlink = "%s"; $userimg = "User"; $mimeimg = "A"; @@ -240,33 +164,43 @@ class divListMimeTypes extends MultiSelectWindow foreach($list as $key => $val){ + /* Check FAI state + */ + $FAIstate = $val['FAIstate'][0]; + $ui = get_userinfo(); $acl = $ui->get_permissions($val['dn'],"mimetypes/mimetype"); $acl_all = $ui->has_complete_category_acls($val['dn'],"mimetypes") ; - /* Create action icons */ - $actions = ""; - if(preg_match("/(c.*w|w.*c)/",$acl_all)){ - $actions .= $this->GetSnapShotActions($val['dn']); - } + $action = ""; - /* Get copy Paste icons */ - if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){ - $actions.= " "; - $actions.= " "; + /* Add copy & cut functionality */ + if(!preg_match("/freeze/i",$FAIstate)){ + $action.= $this->parent->get_copypaste_action($val['dn'],"mimetypes","mimetype"); + }else{ + $action.= " "; + $action.= " "; } - $actions.= ""; + /* Add snapshot icon */ + if(!preg_match("/freeze/i",$FAIstate)){ + $action.= $this->parent->get_snapshot_action($val['dn'],$this->module); + }else{ + $action.= " "; + $action.= " "; + } + /* Add delete button */ - if(preg_match("/d/",$acl)){ - $actions.= ""; + }elseif(preg_match("/d/",$acl)){ + $action.= ""; }else{ - $actions.= " "; + $action.= " "; } $title = "title='".preg_replace('/ /', ' ', @LDAP::fix($val['dn']))."'"; @@ -294,7 +228,7 @@ class divListMimeTypes extends MultiSelectWindow "attach" => "style='width:20px;'"); $field1 = array("string" => sprintf($mimeimg,$val['dn']), "attach" => "style='text-align:center;width:20px;'"); $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' ".$title); - $field3 = array("string" => preg_replace("/%KEY%/", $key, $actions), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"); + $field3 = array("string" => preg_replace("/%KEY%/", $key, $action), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"); $this->AddElement(array($field0,$field1,$field2,$field3)); }