summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 58e25bb)
raw | patch | inline | side by side (parent: 58e25bb)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 25 Oct 2006 04:25:39 +0000 (04:25 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 25 Oct 2006 04:25:39 +0000 (04:25 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4929 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/gofax/blocklists/class_divListBlocklists.inc | patch | blob | history |
diff --git a/plugins/gofax/blocklists/class_divListBlocklists.inc b/plugins/gofax/blocklists/class_divListBlocklists.inc
index bf03065b1dac0eb9d9caca2cc2659a57affccec8..ecf2fdbd107d74ffceeb87ed2b7a7f4baebc0aee 100755 (executable)
}
}
+ $ui = get_userinfo();
+ $acl = $ui->get_permissions($this->selectedBase,"gofax/blocklist");
/* NEW LIST MANAGMENT */
$listhead = "<div style='background:#F0F0F9;padding:5px;'>".
title='"._("Reload list")."' name='submit_department' alt='". _("Submit")."'> ".
" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'> ";
$listhead .= $this->get_snapshot_header($this->selectedBase);
- $listhead .= " <input class='center' type='image' align='middle' src='images/list_new_blocklist.png'
- title='"._("Create new blocklist")."' alt='"._("New Blocklist")."' name='user_new'> ".
- " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>".
- " "._("Base")." <select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
+
+ if(preg_match("/c/",$acl)){
+ $listhead .= " <input class='center' type='image' align='middle' src='images/list_new_blocklist.png' ".
+ " title='"._("Create new blocklist")."' alt='"._("New Blocklist")."' name='user_new'> ".
+ " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>";
+ }
+
+ $listhead .= " "._("Base")." <select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
" <input class='center' type='image' src='images/list_submit.png' align='middle'
title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'> ".
"</div>";
}
/* Append to list */
+ $ui = get_userinfo();
foreach($list as $key => $val){
-
+
+ $acl = $ui->get_permissions($val['dn'],"gofax/blocklist");
+ if(!preg_match("/r/",$acl)){
+ continue;
+ }
+
+ /* Edit link ; requires read access */
$action= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."' name='user_edit_%KEY%' title='"._("Edit user")."'>";
- $action.= $this->GetSnapShotActions($val['dn']);
- $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."' name='user_del_%KEY%' title='"._("Delete user")."'>";
+
+ /* Create snapshot ; requires write access && create access */
+ if(preg_match("/w/",$acl) && preg_match("/c/",$acl)){
+ $action.= $this->GetSnapShotActions($val['dn']);
+ }
+
+ /* Delete entry ; requires remove access */
+ if(preg_match("/d/",$acl)){
+ $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."' name='user_del_%KEY%' title='"._("Delete user")."'>";
+ }
+
// Generate Array to Add
- $display= "[".$val["cn"][0]."]";
+ if(isset($val["description"][0])){
+ $display= $val["cn"][0]." [".$val["description"][0]."]";
+ }else{
+ $display= $val["cn"][0];
+ }
$field1 = array("string" => sprintf($blockimg,$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" => preg_replace("/%KEY%/", "$key", $action), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");