summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 90fe4d7)
raw | patch | inline | side by side (parent: 90fe4d7)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 29 Sep 2006 09:07:29 +0000 (09:07 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 29 Sep 2006 09:07:29 +0000 (09:07 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4833 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/systems/class_phoneGeneric.inc | patch | blob | history |
diff --git a/plugins/admin/systems/class_phoneGeneric.inc b/plugins/admin/systems/class_phoneGeneric.inc
index f35a0ca0336e6de465be9bfd4564b1377171ae9f..7b75e0378faae676d812d8ff5c1cd695ffa381a0 100644 (file)
$this->orig_dn= $this->dn;
}
+ function set_acl_base($base)
+ {
+ plugin::set_acl_base($base);
+ $this->netConfigDNS->set_acl_base($base);
+ }
+
+ function set_acl_category($cat)
+ {
+ plugin::set_acl_category($cat);
+ $this->netConfigDNS->set_acl_category($cat);
+ }
+
+
function execute()
{
/* Call parent execute */
}
/* handle Permit Add*/
- if(isset($_POST['goFonPermitAdd'])){
+ if(isset($_POST['goFonPermitAdd']) && $this->acl_is_writeable("goFonPermit")){
if(isset($_POST['goFonPermitNew'])){
if(is_string($this->goFonPermit)){
$this->goFonPermit=array();
}
/* handle Deny Add*/
- if(isset($_POST['goFonDenyAdd'])){
+ if(isset($_POST['goFonDenyAdd']) && $this->acl_is_writeable("goFonDeny")){
if(isset($_POST['goFonDenyNew'])){
if(is_string($this->goFonDeny)){
$this->goFonDeny=array();
}
/* Handle Permit Deletion*/
- if(isset($_POST['goFonPermitDel'])){
+ if(isset($_POST['goFonPermitDel']) && $this->acl_is_writeable("goFonPermit")){
if(isset($_POST['goFonPermitS'])){
if(is_string($this->goFonPermit)){
$this->goFonPermit=array();
/* Handle Permit Deletion*/
- if(isset($_POST['goFonDenyDel'])){
+ if(isset($_POST['goFonDenyDel']) && $this->acl_is_writeable("goFonDeny")){
if(isset($_POST['goFonDenyS'])){
if(is_string($this->goFonDeny)){
$this->goFonDeny=array();
$smarty->assign("selected_categorie",$this->selected_categorie);
/* Assign attributes */
-
-
$smarty->assign("base_select", $this->base);
-
$smarty->assign("goFonDefaultIPs",array("dynamic"=>_("dynamic"),"network"=>_("Networksettings")));
/* Show main page */
function remove_from_parent()
{
- $ldap= $this->config->get_ldap_link();
- $ldap->cd($this->config->current['BASE']);
+ if($this->acl_is_removeable()){
+ $ldap= $this->config->get_ldap_link();
+ $ldap->cd($this->config->current['BASE']);
- $ldap->search ("(&(objectClass=goFonAccount)(goFonHardware=".$this->cn."))", array("uid","cn"));
- while ($attr = $ldap->fetch()){
- print_red(sprintf(_("Can't delete because there are user which are depending on this phone. One of them is user '%s'."),
- ($attr['uid'][0]." - ".$attr['cn'][0])));
- return;
- }
+ $ldap->search ("(&(objectClass=goFonAccount)(goFonHardware=".$this->cn."))", array("uid","cn"));
+ while ($attr = $ldap->fetch()){
+ print_red(sprintf(_("Can't delete because there are user which are depending on this phone. One of them is user '%s'."),
+ ($attr['uid'][0]." - ".$attr['cn'][0])));
+ return;
+ }
- $this->netConfigDNS->remove_from_parent();
- $ldap->rmdir($this->dn);
- show_ldap_error($ldap->get_error(), sprintf(_("Removing of system phone/generic with dn '%s' failed."),$this->dn));
- $this->handle_post_events("remove");
-
- /* Delete references to object groups */
- $ldap->cd ($this->config->current['BASE']);
- $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".$this->dn."))", array("cn"));
- while ($ldap->fetch()){
- $og= new ogroup($this->config, $ldap->getDN());
- unset($og->member[$this->dn]);
- $og->save ();
+ $this->netConfigDNS->remove_from_parent();
+ $ldap->rmdir($this->dn);
+ show_ldap_error($ldap->get_error(), sprintf(_("Removing of system phone/generic with dn '%s' failed."),$this->dn));
+ $this->handle_post_events("remove");
+
+ /* Delete references to object groups */
+ $ldap->cd ($this->config->current['BASE']);
+ $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".$this->dn."))", array("cn"));
+ while ($ldap->fetch()){
+ $og= new ogroup($this->config, $ldap->getDN());
+ unset($og->member[$this->dn]);
+ $og->save ();
+ }
}
}