mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-14 14:33:02 +01:00
ed5b3d97a0
j'espère pour voir bientôt ajouté au SVN. Cela me fait mettre le doit sur quelques problèmes de nommages, d'organisation que j'ai corrigé sur le fait : - Concepte de level était enfaite celui de subDn : seule le nom subDn doit rester. - Le concept de LSrights dans LSsession et config.inc.php était mal nommé. Il correspond plus à la définition de LSprofile en réalité. Je l'ai renommé ainsi. - Les paramètres authobject et authobject_pwdattr n'étaient pas très représentatif. Je les ai renommé en authObjectType et authObjectTypeAttrPwd. - Templates : -> Correction du template default dans le but de changer la couleur bleu dominante juger trop flashy :). Au passage j'ai dégagé l'image de fond de #main utilisé pour colorer le menu : cette méthode est moche et quitte a à faire du moche je préfère utiliser un vulgaire tableau que des bidouille de ce genre. -> Création d'un logo pour LdapSaisie qui vient remplacer le logo Easter-Eggs utilisé jusqu'alors. -> Ajout d'un favicon. - LSerror : -> J'ai déplacé les definitions de code d'erreur dans le contexte concerné (càd dans les fichiers de définition des classes) (Feature Request #1757) -> J'en ai profité pour renommer les codes d'erreur avec un prefixe pour eviter les doublons -> J'ai donc modifié une grande partie des fichiers pour changer les codes erreurs utilisés -> Ajout d'une méthode getError() utilisé par getErrors() -> Modification de la méthode stop() - LSformElement_password : - Correction d'un bug dans la génération des mots de passe dans un formulaire de création d'objet. - Ajout d'une possiblité de choisir le type de hashage du mot de passe stocké dans l'annuaire (Feature Request #1756) - Traduction des commentaires - LSattribute : Ajout des vérifications dans les méthodes de la classe lors de l'utilisation des objets html et ldap. - LSsession : -> Renforcement des méthodes faisant des inclusions d'autres fichiers php.
109 lines
3.5 KiB
PHP
109 lines
3.5 KiB
PHP
<?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/functions.php';
|
|
require_once 'includes/class/class.LSsession.php';
|
|
|
|
$GLOBALS['LSsession'] = new LSsession();
|
|
|
|
if($LSsession -> startLSsession()) {
|
|
|
|
if (isset($_POST['LSform_objecttype'])) {
|
|
$LSobject = $_POST['LSform_objecttype'];
|
|
}
|
|
else if (isset($_GET['LSobject'])) {
|
|
$LSobject = $_GET['LSobject'];
|
|
}
|
|
|
|
if (isset($LSobject)) {
|
|
// Création d'un LSobject
|
|
if ($GLOBALS['LSsession'] -> loadLSobject($LSobject)) {
|
|
if ( $GLOBALS['LSsession'] -> canCreate($LSobject) ) {
|
|
$object = new $LSobject();
|
|
|
|
if ($_GET['load']!='') {
|
|
$form = $object -> getForm('create',$_GET['load']);
|
|
}
|
|
else {
|
|
$form = $object -> getForm('create');
|
|
}
|
|
if ($form->validate()) {
|
|
// MàJ des données de l'objet LDAP
|
|
if ($object -> updateData('create')) {
|
|
if (!$GLOBALS['LSerror']->errorsDefined()) {
|
|
$GLOBALS['LSsession'] -> addInfo(_("L'objet a bien été ajouté."));
|
|
}
|
|
if (isset($_REQUEST['ajax'])) {
|
|
$GLOBALS['LSsession'] -> displayAjaxReturn (
|
|
array(
|
|
'LSformRedirect' => 'view.php?LSobject='.$LSobject.'&dn='.$object -> getDn()
|
|
)
|
|
);
|
|
exit();
|
|
}
|
|
else {
|
|
if ((!LSdebugDefined()) && !$GLOBALS['LSerror']->errorsDefined()) {
|
|
$GLOBALS['LSsession'] -> redirect('view.php?LSobject='.$LSobject.'&dn='.$object -> getDn());
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
$GLOBALS['LSsession'] -> displayAjaxReturn (
|
|
array(
|
|
'LSformErrors' => $form -> getErrors()
|
|
)
|
|
);
|
|
exit();
|
|
}
|
|
}
|
|
else if (isset($_REQUEST['ajax']) && $form -> definedError()) {
|
|
$GLOBALS['LSsession'] -> displayAjaxReturn (
|
|
array(
|
|
'LSformErrors' => $form -> getErrors()
|
|
)
|
|
);
|
|
exit();
|
|
}
|
|
// Définition du Titre de la page
|
|
$GLOBALS['Smarty'] -> assign('pagetitle',_('Nouveau').' : '.$object -> getLabel());
|
|
$GLOBALS['LSsession'] -> setTemplate('create.tpl');
|
|
$form -> display();
|
|
}
|
|
else {
|
|
$GLOBALS['LSerror'] -> addErrorCode('LSsession_11');
|
|
}
|
|
}
|
|
else {
|
|
$GLOBALS['LSerror'] -> addErrorCode('LSldapObject_01');
|
|
}
|
|
}
|
|
else {
|
|
$GLOBALS['LSerror'] -> addErrorCode('LSsession_12');
|
|
}
|
|
|
|
}
|
|
else {
|
|
$GLOBALS['LSsession'] -> setTemplate('login.tpl');
|
|
}
|
|
$GLOBALS['LSsession'] -> displayTemplate();
|
|
|
|
?>
|