dn); sess_del ('edit'); sess_del ('environment'); } /* Create mail object on demand */ if (!isset($_SESSION['environment']) || (isset($_GET['reset']) && $_GET['reset'] == 1)){ $_SESSION['environment']= new environment ($config, $ui->dn); $_SESSION['environment']->set_acl_category('users'); $_SESSION['environment']->set_acl_base($ui->dn); } $environment= $_SESSION['environment']; /* save changes back to object */ if (isset($_SESSION['edit'])){ $environment->save_object (); } /* Enter edit mode? */ if (isset($_POST['edit'])){ /* Check locking */ if (($username= get_lock($ui->dn)) != ""){ $_SESSION['back_plugin']= $plug; $_SESSION['LOCK_VARS_TO_USE'] = array("/^edit$/","/^plug$/"); $lock_msg = gen_locked_message ($username, $ui->dn); }else{ /* Lock the current entry */ add_lock ($ui->dn, $ui->dn); $_SESSION['dn']= $ui->dn; $_SESSION['edit']= TRUE; } } /* save changes to LDAP and disable edit mode */ if (isset($_POST['edit_finish'])){ /* Perform checks */ $message= $environment->check (); /* No errors, save object */ if (count ($message) == 0){ $environment->save (); gosa_log ("User/environment object '".$ui->dn."' has been saved"); del_lock ($ui->dn); sess_del ('edit'); /* Store object */ $_SESSION['environment']= $environment; } else { /* Errors found, show message */ show_errors ($message); } } /* Execute formular */ if($lock_msg){ $display = $lock_msg; }else{ $display = $environment->execute(); } /* Store changes in session */ if (isset ($_SESSION['edit'])){ $_SESSION['environment']= $environment; } $info= ""; /* Show page footer depending on the mode */ if (!$environment->in_dialog && $environment->is_account && empty($lock_msg)){ $display.= "

"; /* Are we in edit mode? */ if ((isset($_SESSION['edit']))&&($environment->dialog==NULL)){ $display.= "\n"; $display.= " "; $display.= "\n"; $info= "\"\" ".$ui->dn." "; } else { $info= "\"\" ".$ui->dn." "; if(preg_match("/w/",$ui->get_permissions($ui->dn,"users/environment"))){ $info.= "\"\" "._("Click the 'Edit' button below to change informations in this dialog"); $display.= "\n"; } $display.= "\n"; } $display.= "

\n"; } /* Page header*/ $display= print_header(get_template_path('images/email.png'), _("User environment settings"), $info).$display; } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>