selectedRelease = "ou=mime,".$_SESSION['CurrentMainBase']; $this->parent = $parent; $this->ui = get_userinfo(); $this->AvailableReleases= $this->parent->getReleases($this->selectedBase); /* Set list strings */ $this->SetTitle (_("List of defined mime types")); $this->SetSummary (_("List of defined mime types")); $this->SetInformation (_("This menu allows you to add, edit and remove selected mime types. You may want to use the range selector on top of the mime type listbox, when working with a large number of mime types.")); /* Result page will look like a headpage */ $this->SetHeadpageMode(); $this->EnableAplhabet(true); /* Disable buttonsm */ $this->EnableCloseButton(false); $this->EnableSaveButton (false); /* set Page header */ $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" => _("Mime type name")." / "._("Department"), "attach" => "style=''")); $this->AddHeader(array("string" => _("Actions"), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'")); /* Add SubSearch checkbox */ $this->AddCheckBox("SubSearch", _("Select to search within subtrees"), _("Ignore subtrees"), false); /* Name ,Text ,Default , Connect with alphabet */ $this->AddRegex ("Regex", _("Display mime types matching"),"*" , true); } /* This function allows us to add a user defined filter part at position $position*/ function AddUserBoxToFilter($position) { $str = ""; if(($position == 2) && ($this->parent->IsReleaseManagementActivated($this->config))){ $smarty = get_smarty(); $smarty->assign("selectedRelease",$this->selectedRelease); $smarty->assign("branchimage","images/branch.png"); $smarty->assign("releases",$this->AvailableReleases); $str = $smarty->fetch(get_template_path('release_select.tpl', TRUE,dirname(__FILE__))); } return($str); } /* Create list header, with create / copy & paste etc*/ function GenHeader() { /* Prepare departments, which are shown in the listbox on top of the listbox */ $options= ""; foreach ($this->config->idepartments as $key => $value){ if ($this->selectedBase == $key){ $options.= ""; } else { $options.= ""; } } /* Get copy & paste icon */ if($this->parent->CopyPasteHandler){ $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon(); }else{ $Copy_Paste =""; } /* Create listhead, it will be shown on top of the divlist. * It provides general navigation and object creation */ $listhead = "
". "  ". "  ". "  ". "  ". "  "; $listhead .= $this->get_snapshot_header($this->selectedBase); $listhead .= "  ". $Copy_Paste. "  ". _("Base")." ". "  ". "
"; $this->SetListHeader($listhead); } /* Some basic settings */ function execute() { $this->ClearElementsList(); $this->GenHeader(); } function setEntries($list) { /******************** Variable init ********************/ /* Create links */ $linkopen = "%s"; $editlink = "%s"; $userimg = "User"; $mimeimg = "A"; $empty = ""; /* set Page header */ $action_col_size = 70; if($this->parent->snapshotEnabled()){ $action_col_size += 38; } /******************** Attach objects ********************/ foreach($list as $key => $val){ /* Create action icons */ $actions = $this->GetSnapShotActions($val['dn']); if($this->parent->CopyPasteHandler){ $actions.= " "; $actions.= " "; } $actions.= ""; $actions.= ""; $title = "title='".preg_replace('/ /', ' ', @LDAP::fix($val['dn']))."'"; if(!isset($val['description'][0])){ $desc = ""; }else{ $desc = " - [ ".$val['description'][0]." ]"; } $field1 = array("string" => sprintf($mimeimg,$val['dn']), "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, $actions), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"); $this->AddElement(array($field1,$field2,$field3)); } } function Save() { MultiSelectWindow::Save(); } function save_object() { /* Save automatic created POSTs like regex, checkboxes */ MultiSelectWindow::save_object(); /* check if returned selectedRelease is a valid release. If it isn't set to a valid release */ $this->AvailableReleases = $this->parent->getReleases($this->selectedBase); if(!isset($this->AvailableReleases[$this->selectedRelease])){ $this->selectedRelease =key($this->AvailableReleases); } $_SESSION['mimefilter']['release'] = $this->selectedRelease; } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>