2008-02-08 18:39:24 +01: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 13:26:32 +01:00
|
|
|
require_once 'core.php';
|
2008-02-08 18:39:24 +01:00
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
if(LSsession :: startLSsession()) {
|
2008-02-08 18:39:24 +01:00
|
|
|
|
2008-02-12 18:59:44 +01: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();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$LSobject = $_GET['LSobject'];
|
|
|
|
}
|
2008-02-12 18:59:44 +01: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 18:59:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((isset($dn)) && (isset($LSobject)) ) {
|
2008-04-25 16:09:27 +02:00
|
|
|
// Création d'un LSobject
|
2009-01-24 18:45:14 +01:00
|
|
|
if (LSsession :: loadLSobject($LSobject)) {
|
|
|
|
if ( LSsession :: canEdit($LSobject,$dn) ) {
|
2008-02-12 18:59:44 +01:00
|
|
|
$object = new $LSobject();
|
|
|
|
if ($object -> loadData($dn)) {
|
2008-07-15 18:24:35 +02: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 18:59:44 +01:00
|
|
|
$form = $object -> getForm('modify');
|
|
|
|
if ($form->validate()) {
|
2008-04-25 16:09:27 +02:00
|
|
|
// MàJ des données de l'objet LDAP
|
2008-02-12 18:59:44 +01:00
|
|
|
if ($object -> updateData('modify')) {
|
2009-01-21 18:37:02 +01:00
|
|
|
if (LSerror::errorsDefined()) {
|
2009-02-12 13:38:56 +01:00
|
|
|
LSsession :: addInfo(_("The object has been partially modified."));
|
2008-10-13 13:37:34 +02:00
|
|
|
}
|
2008-10-14 15:06:50 +02:00
|
|
|
else {
|
2009-02-12 13:38:56 +01:00
|
|
|
LSsession :: addInfo(_("The object has been modified successfully."));
|
2008-10-14 15:06:50 +02:00
|
|
|
}
|
2008-11-10 00:24:46 +01:00
|
|
|
if (isset($_REQUEST['ajax'])) {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSsession :: displayAjaxReturn (
|
2008-11-10 00:24:46 +01:00
|
|
|
array(
|
2009-01-21 18:08:09 +01:00
|
|
|
'LSredirect' => 'view.php?LSobject='.$LSobject.'&dn='.$object -> getDn()
|
2008-11-10 00:24:46 +01:00
|
|
|
)
|
|
|
|
);
|
2009-01-21 18:08:09 +01:00
|
|
|
exit();
|
2008-10-06 15:46:41 +02:00
|
|
|
}
|
2008-11-10 00:24:46 +01:00
|
|
|
else {
|
2009-01-21 18:08:09 +01:00
|
|
|
if (!LSdebugDefined()) {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSsession :: redirect('view.php?LSobject='.$LSobject.'&dn='.$object -> getDn());
|
2008-11-10 00:24:46 +01:00
|
|
|
}
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSsession :: displayTemplate();
|
2008-11-10 00:24:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2009-02-12 11:04:50 +01:00
|
|
|
if (isset($_REQUEST['ajax'])) {
|
|
|
|
LSsession :: displayAjaxReturn (
|
|
|
|
array(
|
|
|
|
'LSformErrors' => $form -> getErrors()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LSsession :: displayTemplate();
|
|
|
|
}
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
|
|
|
}
|
2008-11-10 00:24:46 +01:00
|
|
|
else if (isset($_REQUEST['ajax']) && $form -> definedError()) {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSsession :: displayAjaxReturn (
|
2008-11-10 00:24:46 +01:00
|
|
|
array(
|
|
|
|
'LSformErrors' => $form -> getErrors()
|
|
|
|
)
|
2008-07-29 15:45:02 +02:00
|
|
|
);
|
|
|
|
}
|
2008-11-10 00:24:46 +01:00
|
|
|
else {
|
|
|
|
$LSview_actions[] = array(
|
2009-02-17 14:15:22 +01:00
|
|
|
'label' => _('View'),
|
2012-05-03 14:42:25 +02:00
|
|
|
'url' =>'view.php?LSobject='.$LSobject.'&dn='.urlencode($object -> getDn()),
|
2008-11-10 00:24:46 +01:00
|
|
|
'action' => 'view'
|
|
|
|
);
|
2008-07-29 15:45:02 +02:00
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
if (LSsession :: canRemove($LSobject,$object -> getDn())) {
|
2008-11-10 00:24:46 +01:00
|
|
|
$LSview_actions[] = array(
|
2009-02-12 13:38:56 +01:00
|
|
|
'label' => _('Delete'),
|
2012-05-03 14:42:25 +02:00
|
|
|
'url' => 'remove.php?LSobject='.$LSobject.'&dn='.urlencode($object -> getDn()),
|
2008-11-10 00:24:46 +01:00
|
|
|
'action' => 'delete'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-06-17 23:39:22 +02:00
|
|
|
LStemplate :: assign('LSview_actions',$LSview_actions);
|
2009-01-24 18:45:14 +01:00
|
|
|
LSsession :: setTemplate('modify.tpl');
|
2008-11-10 00:24:46 +01:00
|
|
|
$form -> display();
|
2009-01-24 18:45:14 +01:00
|
|
|
LSsession :: displayTemplate();
|
2008-11-10 00:24:46 +01:00
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
2008-02-12 18:59:44 +01:00
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSerror :: addErrorCode('LSsession_11');
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSerror :: addErrorCode('LSsession_11');
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSerror :: addErrorCode('LSsession_12');
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSsession :: setTemplate('login.tpl');
|
|
|
|
LSsession :: displayTemplate();
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
|
|
|
|