summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7312cd7)
raw | patch | inline | side by side (parent: 7312cd7)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 6 Oct 2006 11:15:52 +0000 (11:15 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 6 Oct 2006 11:15:52 +0000 (11:15 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4869 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/fai/class_faiVariable.inc | patch | blob | history |
index 91efaebce2e3af8e669b143220154c0aa5ba4cb8..3e012aad146851b7707eed33bde197364dcfcd8d 100644 (file)
var $SubObjects = array(); // All leafobjects of this object
var $FAIstate = "";
+ var $ui ;
function faiVariable ($config, $dn= NULL)
{
$this->SubObjects[$object['cn'][0]]['dn'] = $object['dn'];
}
}
+ $this->ui = get_userinfo();
+ }
+
+
+ function acl_base_for_current_object($dn)
+ {
+ if($dn == "new"){
+ if($this->dn == "new"){
+ $dn= $_SESSION['CurrentMainBase'];
+ }else{
+ $dn = $this->dn;
+ }
+ }
+ return($dn);
}
+
function execute()
{
- /* Call parent execute */
- plugin::execute();
+ /* Call parent execute */
+ plugin::execute();
/* Fill templating stuff */
$smarty= get_smarty();
/* Add new sub object */
if(isset($_POST['AddSubObject'])){
$this->dialog= new $this->subClassName($this->config,"new");
- $this->dialog->set_acl_base($_SESSION['CurrentMainBase']);
+ $this->dialog->set_acl_base($this->acl_base_for_current_object($this->dn));
$this->dialog->set_acl_category("fai");
$this->is_dialog=true;
}
if((isset($_POST['EditSubObject']))&&(isset($_POST['SubObject']))){
$var = $_POST['SubObject'][0];
- $c_dn = $this->SubObjects[$var]['dn'];
- if($c_dn=="new"){
- $c_dn = $_SESSION['CurrentMainBase'];
- }
+ $c_dn = $this->acl_base_for_current_object($this->SubObjects[$var]['dn']);
$this->dialog= new $this->subClassName($this->config,$this->dn,$this->SubObjects[$var]);
$this->dialog->set_acl_category("fai");
$this->dialog->set_acl_base($c_dn);
if((isset($_POST['DelSubObject']))&&(isset($_POST['SubObject']))){
foreach($_POST['SubObject'] as $var){
- $c_dn = $this->SubObjects[$var]['dn'];
- if($c_dn=="new"){
- $c_dn = $_SESSION['CurrentMainBase'];
- }
- $ui = get_userinfo();
- $acl = $ui->get_permissions($c_dn,"fai/faiVariable");
+ $c_dn = $this->acl_base_for_current_object($this->SubObjects[$var]['dn']);
+ $acl = $this->ui->get_permissions($c_dn,"fai/faiVariable");
if(preg_match("/d/",$acl)){
if($this->SubObjects[$var]['status'] == "edited"){
$this->SubObjects[$var]['status']= "delete";
}
}
- $this->ui = get_userinfo();
- $c_dn = $this->dn;
- if($c_dn == "new"){
- $c_dn = $_SESSION['CurrentMainBase'];
- }
+ $c_dn = $this->acl_base_for_current_object($this->dn);
$smarty->assign("is_createable", preg_match("/c/",$this->ui->get_permissions($c_dn,"fai/faiVariableEntry")) && $this->FAIstate!="freeze");
$smarty->assign("is_removeable", preg_match("/d/",$this->ui->get_permissions($c_dn,"fai/faiVariableEntry")) && $this->FAIstate!="freeze");
-
$tmp = $this->plInfo();
foreach($tmp['plProvidedAcls'] as $name => $translation) {
$smarty->assign($name."ACL",$this->getacl($name));
*/
function remove_from_parent()
{
- $ldap = $this->config->get_ldap_link();
- $ldap->cd ($this->dn);
-
-# $use_dn = str_ireplace( get_release_dn($this->dn), $_SESSION['faifilter']['branch'], $this->dn);
- $use_dn = preg_replace("/".normalizePreg(get_release_dn($this->dn))."/i", $_SESSION['faifilter']['branch'], $this->dn);
- if($_SESSION['faifilter']['branch'] == "main"){
- $use_dn = $this->dn;
- }
-
- prepare_to_save_FAI_object($use_dn,array(),true);
+ if($this->acl_is_removeable()){
+ $ldap = $this->config->get_ldap_link();
+ $ldap->cd ($this->dn);
- foreach($this->SubObjects as $name => $obj){
-# $use_dn = str_ireplace( get_release_dn($this->dn), $_SESSION['faifilter']['branch'], $obj['dn']);
- $use_dn = preg_replace("/".normalizePreg(get_release_dn($this->dn))."/i", $_SESSION['faifilter']['branch'], $obj['dn']);
+ $use_dn = preg_replace("/".normalizePreg(get_release_dn($this->dn))."/i", $_SESSION['faifilter']['branch'], $this->dn);
if($_SESSION['faifilter']['branch'] == "main"){
- $use_dn = $obj['dn'];
+ $use_dn = $this->dn;
}
+
prepare_to_save_FAI_object($use_dn,array(),true);
+
+ foreach($this->SubObjects as $name => $obj){
+ $use_dn = preg_replace("/".normalizePreg(get_release_dn($this->dn))."/i", $_SESSION['faifilter']['branch'], $obj['dn']);
+ if($_SESSION['faifilter']['branch'] == "main"){
+ $use_dn = $obj['dn'];
+ }
+ prepare_to_save_FAI_object($use_dn,array(),true);
+ }
+ $this->handle_post_events("remove");
}
- $this->handle_post_events("remove");
}