* Copyright (C) 2006 Regis Houssin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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. * * $Id$ * $Source$ */ /** \file htdocs/user/group/ldap.php \ingroup ldap \brief Page fiche LDAP groupe \version $Revision$ */ require("./pre.inc.php"); require_once(DOL_DOCUMENT_ROOT."/contact.class.php"); require_once(DOL_DOCUMENT_ROOT."/lib/usergroups.lib.php"); require_once(DOL_DOCUMENT_ROOT."/lib/ldap.class.php"); $user->getrights('commercial'); $langs->load("companies"); $langs->load("ldap"); // Protection quand utilisateur externe $contactid = isset($_GET["id"])?$_GET["id"]:''; $socid=0; if ($user->societe_id > 0) { $socid = $user->societe_id; } /* * Affichage page */ llxHeader(); $form = new Form($db); $fgroup = new Usergroup($db, $_GET["id"]); $fgroup->fetch($_GET["id"]); $fgroup->getrights(); /* * Affichage onglets */ $head = group_prepare_head($fgroup); dolibarr_fiche_head($head, 'ldap', $langs->trans("Group").": ".$fgroup->nom); /* * Fiche en mode visu */ print ''; // Nom print ''; print ''; print "\n"; // Note print ''; print ''; print "\n"; $langs->load("admin"); // LDAP DN print '\n"; // LDAP Clé print '\n"; // LDAP Server print '\n"; print '\n"; print '\n"; print "
'.$langs->trans("Name").''.$fgroup->nom.'
'.$langs->trans("Note").''.nl2br($fgroup->note).' 
LDAP '.$langs->trans("LDAPGroupDn").''.$conf->global->LDAP_GROUP_DN."
LDAP '.$langs->trans("LDAPNamingAttribute").''.$conf->global->LDAP_KEY_GROUPS."
LDAP '.$langs->trans("LDAPPrimaryServer").''.$conf->global->LDAP_SERVER_HOST."
LDAP '.$langs->trans("LDAPSecondaryServer").''.$conf->global->LDAP_SERVER_HOST_SLAVE."
LDAP '.$langs->trans("LDAPServerPort").''.$conf->global->LDAP_SERVER_PORT."
\n"; print ''; print '
'; print_titre($langs->trans("LDAPInformationsForThisGroup")); // Affichage attributs LDAP print ''; print ''; print ''; print ''; print ''; // Lecture LDAP $ldap=new Ldap(); $result=$ldap->connect_bind(); if ($result > 0) { $info=$fgroup->_load_ldap_info(); $dn=$fgroup->_load_ldap_dn($info,1); $search = "(".$fgroup->_load_ldap_dn($info,2).")"; $records=$ldap->search($dn,$search); //print_r($records); // Affichage arbre if (sizeof($records) && (! isset($records['count']) || $records['count'] > 0)) { if (! is_array($records)) { print ''; } else { $html=new Form($db); $result=$html->show_ldap_content($records,0,0,true); } } else { print ''; } $ldap->unbind(); $ldap->close(); } else { dolibarr_print_error('',$ldap->error); } print '
'.$langs->trans("LDAPAttributes").''.$langs->trans("Value").'
'.$langs->trans("ErrorFailedToReadLDAP").'
'.$langs->trans("LDAPRecordNotFound").' (dn='.$dn.' - search='.$search.')
'; $db->close(); llxFooter('$Date$ - $Revision$'); ?>