parent = $parent; $this->ui = get_userinfo(); /* Set list strings */ $this->SetTitle(_("List of macros")); $this->SetSummary(_("List of macros")); /* Result page will look like a headpage */ $this->SetHeadpageMode(); $this->SetInformation(_("This menu allows you to add, edit and remove selected macros. You may want to use the range selector on top of the macro listbox, when working with a large number of macros.")); $this->EnableAplhabet (true); /* Disable buttonsm */ $this->EnableCloseButton(false); $this->EnableSaveButton (false); /* Dynamic action col, depending on snapshot icons */ $action_col_size = 50; if($this->parent->snapshotEnabled()){ $action_col_size += 20; } /* set Page header */ $this->AddHeader(array("string" => " ", "attach" => "style='text-align:center;width:20px;'")); $this->AddHeader(array("string" => _("Macro name")." / "._("Department"), "attach" => "style=''")); $this->AddHeader(array("string" => _("Visible"), "attach" => "style='width:50px;'")); $this->AddHeader(array("string" => _("Actions"), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'" )); /* Add Checkboxes / SubSearch checkbox */ $this->AddCheckBox("SubSearch", _("Select to search within subtrees"), _("Ignore subtrees"), false); /* Name ,Text ,Default , Connect with alphabet */ $this->AddRegex ("Regex", _("Regular expression for matching macro names"),"*" , 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))", $this->module, $base, array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH); /* Load possible departments */ $ui= get_userinfo(); $tdeps= $ui->get_module_departments("gofonmacro"); $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.= ""; } } } $acls = $ui->get_permissions($this->selectedBase,"gofonmacro/macro"); /* Add default header */ $listhead = MultiSelectWindow::get_default_header(); if(preg_match("/w/",$acls) && preg_match("/c/",$acls)){ $listhead .= $this->get_snapshot_header($this->selectedBase); } if(preg_match("/c/",$acls)){ $listhead .= "  "; $listhead .= "  "; } $listhead .= _("Base")." ". "  ". ""; $this->SetListHeader($listhead); } function execute() { $this->ClearElementsList(); $this->GenHeader(); } function setEntries($list) { $empty = ""; $macroimg = ""._("Macro").""; $visible = ""._("yes").""; $invisible = ""._("no").""; $editlink = "%s"; /* Dynamic action col, depending on snapshot icons */ $action_col_size = 50; if($this->parent->snapshotEnabled()){ $action_col_size += 20; } $ui = get_userinfo(); foreach($list as $key => $val){ $sacl = $ui->get_permissions($val['dn'],"gofonmacro/macro"); $action = ""; if(!preg_match("/r/",$sacl)){ continue; } $action.= ""; if(preg_match("/c/",$sacl) && preg_match("/w/",$sacl)){ $action.= $this->GetSnapShotActions($val['dn']); } if(preg_match("/d/",$sacl)){ $action.= ""; } if(isset($val['goFonMacroVisible']['0'])&&($val['goFonMacroVisible']['0'] == "1")){ $pic1 = $visible; }else{ $pic1 = $invisible; } $display= $val["displayName"][0]." (".$val["cn"][0].")"; if(isset($val['description'][0])){ $desc = $val['description'][0]; if(strlen($desc) > 55){ $desc = substr($desc,0,52)."..."; } $display .= " [".$desc."]"; } $field1 = array("string" => sprintf($macroimg,$val['dn']), "attach" => "style='text-align:center;width:20px;'"); $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' title='".preg_replace('/ /', ' ', @LDAP::fix($val['dn']))."'"); $field3 = array("string" => $pic1, "attach" => "style='width:50px;'"); $field4 = array("string" => preg_replace("/%KEY%/", "$key", $action), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"); $this->AddElement(array($field1,$field2,$field3,$field4)); } } function Save() { MultiSelectWindow :: Save(); } function save_object() { /* Save automatic created POSTs like regex, checkboxes */ MultiSelectWindow :: save_object(); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>