2008-02-12 18:59:44 +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.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
require_once 'includes/class/class.LSsession.php';
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
if(LSsession :: startLSsession()) {
|
2008-02-12 18:59:44 +01:00
|
|
|
|
|
|
|
if ((isset($_GET['LSobject'])) && (isset($_GET['dn']))) {
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
if (LSsession ::loadLSobject($_GET['LSobject'])) {
|
|
|
|
if ( LSsession :: canRemove($_GET['LSobject'],$_GET['dn']) ) {
|
2008-02-12 18:59:44 +01:00
|
|
|
$object = new $_GET['LSobject']();
|
|
|
|
if ($object -> loadData($_GET['dn'])) {
|
|
|
|
if (isset($_GET['valid'])) {
|
2009-01-07 20:24:14 +01:00
|
|
|
$objectname=$object -> getDisplayName();
|
2009-02-12 13:38:56 +01:00
|
|
|
$GLOBALS['Smarty'] -> assign('pagetitle',_('Deleting').' : '.$objectname);
|
2008-02-12 18:59:44 +01:00
|
|
|
if ($object -> remove()) {
|
2009-02-12 13:38:56 +01:00
|
|
|
LSsession :: addInfo($objectname.' '._('has been deleted successfully').'.');
|
2009-01-24 18:45:14 +01:00
|
|
|
LSsession :: redirect('view.php?LSobject='.$_GET['LSobject'].'&refresh');
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSerror :: addErrorCode('LSldapObject_15',$objectname);
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2008-04-25 16:09:27 +02:00
|
|
|
// Définition du Titre de la page
|
2009-02-12 13:38:56 +01:00
|
|
|
$GLOBALS['Smarty'] -> assign('pagetitle',_('Deleting').' : '.$object -> getDisplayName());
|
2009-02-17 09:42:05 +01:00
|
|
|
$GLOBALS['Smarty'] -> assign('question',_('Do you really want to delete').' <strong>'.$object -> getDisplayName().'</strong> ?');
|
2008-02-12 18:59:44 +01:00
|
|
|
$GLOBALS['Smarty'] -> assign('validation_url','remove.php?LSobject='.$_GET['LSobject'].'&dn='.$_GET['dn'].'&valid');
|
2009-02-17 09:55:22 +01:00
|
|
|
$GLOBALS['Smarty'] -> assign('validation_label',_('Validate'));
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
LSsession :: setTemplate('question.tpl');
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSerror :: addErrorCode('LSsession_12');
|
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('LSldapObject_01');
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSerror :: addErrorCode('LSsession_12');
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
LSsession :: setTemplate('login.tpl');
|
2008-02-12 18:59:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Affichage des retours d'erreurs
|
2009-01-24 18:45:14 +01:00
|
|
|
LSsession :: displayTemplate();
|
2008-02-12 18:59:44 +01:00
|
|
|
?>
|