dn); sess_del ('edit'); sess_del ('sambaAccount'); } /* Create sambaAccount object on demand */ if (!isset($_SESSION['sambaAccount']) || (isset($_GET['reset']) && $_GET['reset'] == 1)){ $_SESSION['sambaAccount']= new sambaAccount ($config, $ui->dn); } $sambaAccount= $_SESSION['sambaAccount']; /* save changes back to object */ if (isset ($_SESSION['edit'])){ $sambaAccount->save_object (); } /* Enter edit mode? */ if ((isset($_POST['edit'])) && (!isset( $_SESSION['edit']))){ /* Check locking */ if (($username= get_lock($ui->dn)) != ""){ $_SESSION['back_plugin']= $plug; gen_locked_message ($username, $ui->dn); exit (); } /* Lock the current entry */ add_lock ($ui->dn, $ui->dn); $_SESSION['dn']= $ui->dn; $_SESSION['edit']= TRUE; } /* Adjust acl's to mode */ if (isset($_SESSION['edit'])){ $acl= get_permissions ($ui->dn, $ui->subtreeACL); $sambaAccount->acl= get_module_permission($acl, "sambaAccount", $ui->dn); } else { $acl= get_permissions ($ui->dn, $ui->subtreeACL); $editacl= get_module_permission($acl, "sambaAccount", $ui->dn); $sambaAccount->acl= "#none#"; } /* save changes to LDAP and disable edit mode */ if (isset($_POST['edit_finish'])){ /* Perform checks */ $message= $sambaAccount->check (); /* No errors, save object */ if (count ($message) == 0){ $sambaAccount->save (); gosa_log ("User/samba object'".$ui->dn."' has been saved"); $sambaAccount->acl= "#none#"; $editacl= get_module_permission($acl, "sambaAccount", $ui->dn); del_lock ($ui->dn); sess_del ('edit'); /* Remove from session */ sess_del ('sambaAccount'); } else { /* Errors found, show message */ show_errors ($message); } } /* Execute formular */ $display= $sambaAccount->execute (); /* Store changes in session */ if (isset ($_SESSION['edit'])){ $_SESSION['sambaAccount']= $sambaAccount; } $info= ""; if ($sambaAccount->is_account){ $display.= "

"; /* Are we in edit mode? */ if (isset($_SESSION['edit'])){ $display.= "\n"; $display.= " "; $display.= "\n"; $info= "\"\" ".$ui->dn." "; } else { $info= "\"\" ".$ui->dn." "; if (isset($editacl) && $editacl != "#none#"){ $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/samba.png'), _("Samba settings"), $info).$display; } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>