mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-13 05:53:03 +01:00
7d2e3baf8b
- Propagation des possibilités de l'interface
102 lines
3.1 KiB
PHP
102 lines
3.1 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.
|
||
|
||
******************************************************************************/
|
||
|
||
// Configuration LDAP Saisie :
|
||
$GLOBALS['LSconfig'] = array(
|
||
'NetLDAP' => '/usr/share/php/Net/LDAP.php',
|
||
'Smarty' => '/var/www/tmp/Smarty-2.6.18/libs/Smarty.class.php',
|
||
'lang' => 'fr_FR.UTF8',
|
||
'cacheLSrights' => true,
|
||
'ldap_servers' => array (
|
||
array (
|
||
'name' => 'Ldap 1',
|
||
'ldap_config'=> array(
|
||
'host' => '127.0.0.1',
|
||
'port' => 389,
|
||
'version' => 3,
|
||
'starttls' => false,
|
||
'binddn' => 'uid=toto,ou=people,o=ls',
|
||
'bindpw' => 'toto',
|
||
'basedn' => 'o=ls',
|
||
'options' => array(),
|
||
'filter' => '(objectClass=*)',
|
||
'scope' => 'sub'
|
||
),
|
||
'LSadmins' => array (
|
||
'o=ost' => array (
|
||
'uid=toto,ou=people,o=ls' => NULL,
|
||
'cn=adminldap,ou=groups,o=ost' => array (
|
||
'attr' => 'uniqueMember',
|
||
'LSobject' => 'LSeegroup'
|
||
)
|
||
)
|
||
),
|
||
'cacheLSrights' => false,
|
||
'authobject' => 'LSeepeople',
|
||
'authobject_pwdattr' => 'userPassword'
|
||
),
|
||
array (
|
||
'name' => 'Ldap 2',
|
||
'ldap_config'=> array(
|
||
'host' => '127.0.0.1',
|
||
'port' => 389,
|
||
'version' => 3,
|
||
'starttls' => false,
|
||
'binddn' => 'uid=toto,ou=people,o=com',
|
||
'bindpw' => 'toto',
|
||
'basedn' => 'o=com',
|
||
'options' => array(),
|
||
'filter' => '(objectClass=*)',
|
||
'scope' => 'sub'
|
||
),
|
||
'subdnobject' => 'LSeecompany',
|
||
'authobject' => 'LSeepeople',
|
||
'authobject_pwdattr' => 'userPassword'
|
||
)
|
||
)
|
||
);
|
||
|
||
//Debug
|
||
$GLOBALS['LSdebug']['active'] = false;
|
||
|
||
// D<>finitions des locales
|
||
$textdomain = 'ldapsaisie';
|
||
bindtextdomain($textdomain, '/var/www/ldapsaisie/trunk/l10n');
|
||
textdomain($textdomain);
|
||
setlocale(LC_ALL, $GLOBALS['LSconfig']['lang']);
|
||
|
||
// D<>finitions des dossiers d'inclusions
|
||
define('LS_CONF_DIR','conf/');
|
||
define('LS_INCLUDE_DIR','includes/');
|
||
define('LS_CLASS_DIR', LS_INCLUDE_DIR .'class/');
|
||
define('LS_LIB_DIR', LS_INCLUDE_DIR .'libs/');
|
||
define('LS_ADDONS_DIR', LS_INCLUDE_DIR .'addons/');
|
||
define('LS_JS_DIR', LS_INCLUDE_DIR .'js/');
|
||
|
||
// Javascript
|
||
$GLOBALS['defaultJSscipts']=array(
|
||
'mootools.js',
|
||
'LSdefault.js',
|
||
'Debugger.js'
|
||
);
|
||
|
||
?>
|