2008-02-08 17:39:24 +00:00
|
|
|
<?php
|
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (C) 2007 Easter-eggs
|
|
|
|
* http://ldapsaisie.labs.libre-entreprise.org
|
|
|
|
*
|
|
|
|
* Author: See AUTHORS file in top-level directory.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
2009-03-25 12:26:32 +00:00
|
|
|
require_once 'core.php';
|
2008-02-08 17:39:24 +00:00
|
|
|
|
2009-01-24 17:45:14 +00:00
|
|
|
if(LSsession :: startLSsession()) {
|
2008-02-08 17:39:24 +00:00
|
|
|
|
2008-02-12 17:59:44 +00:00
|
|
|
if (isset($_POST['LSform_objecttype'])) {
|
|
|
|
$LSobject = $_POST['LSform_objecttype'];
|
|
|
|
}
|
|
|
|
else if (isset($_GET['LSobject'])) {
|
2011-04-11 13:05:11 +02:00
|
|
|
if ($_GET['LSobject'] == 'SELF') {
|
|
|
|
$LSobject = LSsession :: getLSuserObject() -> getType();
|
|
|
|
$dn = LSsession :: getLSuserObjectDn();
|
|
|
|
}
|
2020-04-29 15:54:21 +02:00
|
|
|
else {
|
2011-04-11 13:05:11 +02:00
|
|
|
$LSobject = $_GET['LSobject'];
|
|
|
|
}
|
2008-02-12 17:59:44 +00:00
|
|
|
}
|
2020-04-29 15:54:21 +02:00
|
|
|
|
2008-02-12 17:59:44 +00:00
|
|
|
if (isset($_POST['LSform_objectdn'])) {
|
|
|
|
$dn = $_POST['LSform_objectdn'];
|
|
|
|
}
|
|
|
|
else if (isset($_GET['dn'])) {
|
2012-05-03 12:44:46 +02:00
|
|
|
$dn = urldecode($_GET['dn']);
|
2008-02-12 17:59:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((isset($dn)) && (isset($LSobject)) ) {
|
2008-04-25 14:09:27 +00:00
|
|
|
// Création d'un LSobject
|
2009-01-24 17:45:14 +00:00
|
|
|
if (LSsession :: loadLSobject($LSobject)) {
|
|
|
|
if ( LSsession :: canEdit($LSobject,$dn) ) {
|
2008-02-12 17:59:44 +00:00
|
|
|
$object = new $LSobject();
|
|
|
|
if ($object -> loadData($dn)) {
|
2008-07-15 16:24:35 +00:00
|
|
|
// Définition du Titre de la page
|
2013-06-17 23:39:22 +02:00
|
|
|
LStemplate :: assign('pagetitle',_('Modify').' : '.$object -> getDisplayName());
|
2008-02-12 17:59:44 +00:00
|
|
|
$form = $object -> getForm('modify');
|
|
|
|
if ($form->validate()) {
|
2008-04-25 14:09:27 +00:00
|
|
|
// MàJ des données de l'objet LDAP
|
2008-02-12 17:59:44 +00:00
|
|
|
if ($object -> updateData('modify')) {
|
2009-01-21 17:37:02 +00:00
|
|
|
if (LSerror::errorsDefined()) {
|
2009-02-12 12:38:56 +00:00
|
|
|
LSsession :: addInfo(_("The object has been partially modified."));
|
2008-10-13 11:37:34 +00:00
|
|
|
}
|
2008-10-14 13:06:50 +00:00
|
|
|
else {
|
2009-02-12 12:38:56 +00:00
|
|
|
LSsession :: addInfo(_("The object has been modified successfully."));
|
2008-10-14 13:06:50 +00:00
|
|
|
}
|
2008-11-09 23:24:46 +00:00
|
|
|
if (isset($_REQUEST['ajax'])) {
|
2009-01-24 17:45:14 +00:00
|
|
|
LSsession :: displayAjaxReturn (
|
2008-11-09 23:24:46 +00:00
|
|
|
array(
|
2009-01-21 17:08:09 +00:00
|
|
|
'LSredirect' => 'view.php?LSobject='.$LSobject.'&dn='.$object -> getDn()
|
2008-11-09 23:24:46 +00:00
|
|
|
)
|
|
|
|
);
|
2009-01-21 17:08:09 +00:00
|
|
|
exit();
|
2008-10-06 13:46:41 +00:00
|
|
|
}
|
2008-11-09 23:24:46 +00:00
|
|
|
else {
|
2009-01-21 17:08:09 +00:00
|
|
|
if (!LSdebugDefined()) {
|
2009-01-24 17:45:14 +00:00
|
|
|
LSsession :: redirect('view.php?LSobject='.$LSobject.'&dn='.$object -> getDn());
|
2008-11-09 23:24:46 +00:00
|
|
|
}
|
|
|
|
else {
|
2009-01-24 17:45:14 +00:00
|
|
|
LSsession :: displayTemplate();
|
2008-11-09 23:24:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2009-02-12 10:04:50 +00:00
|
|
|
if (isset($_REQUEST['ajax'])) {
|
|
|
|
LSsession :: displayAjaxReturn (
|
|
|
|
array(
|
|
|
|
'LSformErrors' => $form -> getErrors()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LSsession :: displayTemplate();
|
|
|
|
}
|
2008-02-12 17:59:44 +00:00
|
|
|
}
|
|
|
|
}
|
2008-11-09 23:24:46 +00:00
|
|
|
else if (isset($_REQUEST['ajax']) && $form -> definedError()) {
|
2009-01-24 17:45:14 +00:00
|
|
|
LSsession :: displayAjaxReturn (
|
2008-11-09 23:24:46 +00:00
|
|
|
array(
|
|
|
|
'LSformErrors' => $form -> getErrors()
|
|
|
|
)
|
2008-07-29 13:45:02 +00:00
|
|
|
);
|
|
|
|
}
|
2008-11-09 23:24:46 +00:00
|
|
|
else {
|
|
|
|
$LSview_actions[] = array(
|
2009-02-17 13:15:22 +00:00
|
|
|
'label' => _('View'),
|
2012-05-03 14:42:25 +02:00
|
|
|
'url' =>'view.php?LSobject='.$LSobject.'&dn='.urlencode($object -> getDn()),
|
2008-11-09 23:24:46 +00:00
|
|
|
'action' => 'view'
|
|
|
|
);
|
2020-04-29 15:54:21 +02:00
|
|
|
|
2009-01-24 17:45:14 +00:00
|
|
|
if (LSsession :: canRemove($LSobject,$object -> getDn())) {
|
2008-11-09 23:24:46 +00:00
|
|
|
$LSview_actions[] = array(
|
2009-02-12 12:38:56 +00:00
|
|
|
'label' => _('Delete'),
|
2012-05-03 14:42:25 +02:00
|
|
|
'url' => 'remove.php?LSobject='.$LSobject.'&dn='.urlencode($object -> getDn()),
|
2008-11-09 23:24:46 +00:00
|
|
|
'action' => 'delete'
|
|
|
|
);
|
|
|
|
}
|
2020-04-29 15:54:21 +02:00
|
|
|
|
2013-06-17 23:39:22 +02:00
|
|
|
LStemplate :: assign('LSview_actions',$LSview_actions);
|
2009-01-24 17:45:14 +00:00
|
|
|
LSsession :: setTemplate('modify.tpl');
|
2008-11-09 23:24:46 +00:00
|
|
|
$form -> display();
|
2009-01-24 17:45:14 +00:00
|
|
|
LSsession :: displayTemplate();
|
2008-11-09 23:24:46 +00:00
|
|
|
}
|
2008-02-08 17:39:24 +00:00
|
|
|
}
|
2008-02-12 17:59:44 +00:00
|
|
|
else {
|
2009-01-24 17:45:14 +00:00
|
|
|
LSerror :: addErrorCode('LSsession_11');
|
2008-02-12 17:59:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2009-01-24 17:45:14 +00:00
|
|
|
LSerror :: addErrorCode('LSsession_11');
|
2008-02-08 17:39:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2009-01-24 17:45:14 +00:00
|
|
|
LSerror :: addErrorCode('LSsession_12');
|
2008-02-08 17:39:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
2009-01-24 17:45:14 +00:00
|
|
|
LSsession :: setTemplate('login.tpl');
|
|
|
|
LSsession :: displayTemplate();
|
2008-02-08 17:39:24 +00:00
|
|
|
}
|