summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 77fb20d)
raw | patch | inline | side by side (parent: 77fb20d)
author | zeph <zeph@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 25 Mar 2008 17:04:36 +0000 (17:04 +0000) | ||
committer | zeph <zeph@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 25 Mar 2008 17:04:36 +0000 (17:04 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5-plugins@9979 594d385d-05f5-0310-b6e9-bd551577e9d8
sudo-ldap/src/class_sudoldap.inc | patch | blob | history |
index 8629e73f303e8c22ee0fa1fefb82e5c6ac1cfd77..10b59b4fc5af0efd0853368dbb1ad4a2bf8e01c6 100644 (file)
"sudoOption");
var $objectclasses = array("sudoRole");
+
+ var $roles_list = array();
/* constructor, if 'dn' is set, the node loads the given
'dn' from LDAP */
$RoleList -> SetHeight(300);
$editImg = "<input type='image' src='images/edit.png' name='editRole_%s'>
<input type='image' src='images/edittrash.png' name='delRole_%s'>";
- /*
- foreach($this->Zones as $zone => $values ){
+ $this->roles_list = $this->get_list_of_roles();
+ foreach($this->roles_list as $role => $values ){
$link = "<a href='?plug=".$_GET['plug']."&act=edit&id=%s'>%s</a>";
- $ZoneList->AddEntry(array(
- array("string" => sprintf($link,base64_encode($zone),getNameFromMix($zone))),
- array("string" => sprintf($link,base64_encode($zone),_("Reverse zone")." : ".getNameFromMix($values['ReverseZone']))),
- array("string" => _("TTL")." : ".$values['sOAttl']),
- array("string" => _("Class")." : ".$values['dNSClass']),
- array("string" => str_replace("%s",base64_encode($zone),$editImg))
+ $RoleList->AddEntry(array(
+ array("string" => sprintf($link,base64_encode($role),$role)),
+ //array("string" => sprintf($link,base64_encode($zone),_("Reverse zone")." : ".getNameFromMix($values['ReverseZone']))),
+ //array("string" => _("TTL")." : ".$values['sOAttl']),
+ //array("string" => _("Class")." : ".$values['dNSClass']),
+ array("string" => str_replace("%s",base64_encode($role),$editImg))
));
}
- */
$smarty->assign("sudoldapACL",chkacl($this->acl,"sudoldap"));
return($display);
}
+ function get_list_of_roles()
+ {
+ $ret = array();
+ $ldap = $this->config->get_ldap_link();
+ $ldap->cd($this->config->current['BASE']);
+ $ldap->search("(objectClass=sudoRole)",array("cn","description"));
+ while ($attrs= $ldap->fetch()){
+ $cn= $attrs['cn'][0];
+ if (isset($attrs['description'])){
+ $description= " - ".$attrs['description'][0];
+ } else {
+ $description= "";
+ }
+ $ret[$cn]= "$description";
+ }
+ return($ret);
+ }
+
+
}
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: