forked from Wavyzz/dolibarr
Ajout page config LDAP pour module adherent
This commit is contained in:
@@ -58,6 +58,7 @@ if ($_GET["action"] == 'setvalue' && $user->admin)
|
|||||||
if (! dolibarr_set_const($db, 'LDAP_SERVER_USE_TLS',$_POST["usetls"])) $error++;
|
if (! dolibarr_set_const($db, 'LDAP_SERVER_USE_TLS',$_POST["usetls"])) $error++;
|
||||||
if (! dolibarr_set_const($db, 'LDAP_CONTACT_ACTIVE',$_POST["activecontact"])) $error++;
|
if (! dolibarr_set_const($db, 'LDAP_CONTACT_ACTIVE',$_POST["activecontact"])) $error++;
|
||||||
if (! dolibarr_set_const($db, 'LDAP_SYNCHRO_ACTIVE',$_POST["activesynchro"])) $error++;
|
if (! dolibarr_set_const($db, 'LDAP_SYNCHRO_ACTIVE',$_POST["activesynchro"])) $error++;
|
||||||
|
if (! dolibarr_set_const($db, 'LDAP_MEMBERS_ACTIVE',$_POST["activemembers"])) $error++;
|
||||||
|
|
||||||
if ($error)
|
if ($error)
|
||||||
{
|
{
|
||||||
@@ -145,14 +146,28 @@ if ($conf->global->LDAP_SYNCHRO_ACTIVE && ! $conf->global->LDAP_USER_DN)
|
|||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
// Synchro contact active
|
// Synchro contact active
|
||||||
$var=!$var;
|
if ($conf->societe->enabled)
|
||||||
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPDnContactActive").'</td><td>';
|
{
|
||||||
$arraylist=array();
|
$var=!$var;
|
||||||
$arraylist['0']=$langs->trans("No");
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPDnContactActive").'</td><td>';
|
||||||
$arraylist['1']=$langs->trans("DolibarrToLDAP");
|
$arraylist=array();
|
||||||
$html->select_array('activecontact',$arraylist,$conf->global->LDAP_CONTACT_ACTIVE);
|
$arraylist['0']=$langs->trans("No");
|
||||||
print '</td><td>'.$langs->trans("LDAPDnContactActiveExample").'</td></tr>';
|
$arraylist['1']=$langs->trans("DolibarrToLDAP");
|
||||||
|
$html->select_array('activecontact',$arraylist,$conf->global->LDAP_CONTACT_ACTIVE);
|
||||||
|
print '</td><td>'.$langs->trans("LDAPDnContactActiveExample").'</td></tr>';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Synchro adherentt active
|
||||||
|
if ($conf->adherent->enabled)
|
||||||
|
{
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPDnMemberActive").'</td><td>';
|
||||||
|
$arraylist=array();
|
||||||
|
$arraylist['0']=$langs->trans("No");
|
||||||
|
$arraylist['1']=$langs->trans("DolibarrToLDAP");
|
||||||
|
$html->select_array('activemembers',$arraylist,$conf->global->LDAP_MEMBERS_ACTIVE);
|
||||||
|
print '</td><td>'.$langs->trans("LDAPDnMemberActiveExample").'</td></tr>';
|
||||||
|
}
|
||||||
|
|
||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print '<td>'.$langs->trans("Parameter").'</td>';
|
print '<td>'.$langs->trans("Parameter").'</td>';
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\file htdocs/admin/ldap.php
|
\file htdocs/admin/ldap_contacts.php
|
||||||
\ingroup ldap
|
\ingroup ldap
|
||||||
\brief Page d'administration/configuration du module Ldap
|
\brief Page d'administration/configuration du module Ldap
|
||||||
\version $Revision$
|
\version $Revision$
|
||||||
|
|||||||
286
htdocs/admin/ldap_members.php
Normal file
286
htdocs/admin/ldap_members.php
Normal file
@@ -0,0 +1,286 @@
|
|||||||
|
<?php
|
||||||
|
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
|
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
|
||||||
|
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
||||||
|
* Copyright (C) 2005 Regis Houssin <regis.houssin@cap-networks.com>
|
||||||
|
* Copyright (C) 2006 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
|
*
|
||||||
|
* 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/admin/ldap_members.php
|
||||||
|
\ingroup ldap adherent
|
||||||
|
\brief Page d'administration/configuration du module Ldap adherent
|
||||||
|
\version $Revision$
|
||||||
|
*/
|
||||||
|
|
||||||
|
require("./pre.inc.php");
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_type.class.php");
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/lib/authldap.lib.php");
|
||||||
|
|
||||||
|
$langs->load("admin");
|
||||||
|
|
||||||
|
if (!$user->admin)
|
||||||
|
accessforbidden();
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Actions
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ($_GET["action"] == 'setvalue' && $user->admin)
|
||||||
|
{
|
||||||
|
$error=0;
|
||||||
|
if (! dolibarr_set_const($db, 'LDAP_MEMBER_DN',$_POST["user"])) $error++;
|
||||||
|
if (! dolibarr_set_const($db, 'LDAP_MEMBER_TYPE_DN',$_POST["group"])) $error++;
|
||||||
|
if (! dolibarr_set_const($db, 'LDAP_FIELD_LOGIN',$_POST["fieldlogin"])) $error++;
|
||||||
|
if (! dolibarr_set_const($db, 'LDAP_FIELD_LOGIN_SAMBA',$_POST["fieldloginsamba"])) $error++;
|
||||||
|
if (! dolibarr_set_const($db, 'LDAP_FIELD_NAME',$_POST["fieldname"])) $error++;
|
||||||
|
if (! dolibarr_set_const($db, 'LDAP_FIELD_FIRSTNAME',$_POST["fieldfirstname"])) $error++;
|
||||||
|
if (! dolibarr_set_const($db, 'LDAP_FIELD_MAIL',$_POST["fieldmail"])) $error++;
|
||||||
|
if (! dolibarr_set_const($db, 'LDAP_FIELD_PHONE',$_POST["fieldphone"])) $error++;
|
||||||
|
if (! dolibarr_set_const($db, 'LDAP_FIELD_FAX',$_POST["fieldfax"])) $error++;
|
||||||
|
if (! dolibarr_set_const($db, 'LDAP_FIELD_MOBILE',$_POST["fieldmobile"])) $error++;
|
||||||
|
|
||||||
|
if ($error)
|
||||||
|
{
|
||||||
|
dolibarr_print_error($db->error());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Visu
|
||||||
|
*/
|
||||||
|
|
||||||
|
llxHeader();
|
||||||
|
|
||||||
|
print_fiche_titre($langs->trans("LDAPSetup"),'','setup');
|
||||||
|
|
||||||
|
// Test si fonction LDAP actives
|
||||||
|
if (! function_exists("ldap_connect"))
|
||||||
|
{
|
||||||
|
$mesg=$langs->trans("LDAPFunctionsNotAvailableOnPHP");
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($mesg) print '<div class="error">'.$mesg.'</div>';
|
||||||
|
else print '<br>';
|
||||||
|
|
||||||
|
|
||||||
|
// Onglets
|
||||||
|
$h = 0;
|
||||||
|
|
||||||
|
$head[$h][0] = DOL_URL_ROOT."/admin/ldap.php";
|
||||||
|
$head[$h][1] = $langs->trans("LDAPGlobalParameters");
|
||||||
|
$h++;
|
||||||
|
|
||||||
|
if ($conf->global->LDAP_SYNCHRO_ACTIVE)
|
||||||
|
{
|
||||||
|
$head[$h][0] = DOL_URL_ROOT."/admin/ldap_users.php";
|
||||||
|
$head[$h][1] = $langs->trans("LDAPUsersAndGroupsSynchro");
|
||||||
|
$h++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($conf->global->LDAP_CONTACT_ACTIVE)
|
||||||
|
{
|
||||||
|
$head[$h][0] = DOL_URL_ROOT."/admin/ldap_contacts.php";
|
||||||
|
$head[$h][1] = $langs->trans("LDAPContactsSynchro");
|
||||||
|
$h++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($conf->global->LDAP_MEMBERS_ACTIVE)
|
||||||
|
{
|
||||||
|
$head[$h][0] = DOL_URL_ROOT."/admin/ldap_members.php";
|
||||||
|
$head[$h][1] = $langs->trans("LDAPMembersSynchro");
|
||||||
|
$hselected=$h;
|
||||||
|
$h++;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
dolibarr_fiche_head($head, $hselected, $langs->trans("LDAP"));
|
||||||
|
|
||||||
|
print $langs->trans("LDAPDescMembers").'<br>';
|
||||||
|
print '<br>';
|
||||||
|
|
||||||
|
|
||||||
|
print '<form method="post" action="'.$_SERVER["PHP_SELF"].'?action=setvalue">';
|
||||||
|
|
||||||
|
print '<table class="noborder" width="100%">';
|
||||||
|
|
||||||
|
$var=true;
|
||||||
|
$html=new Form($db);
|
||||||
|
|
||||||
|
|
||||||
|
print '<tr class="liste_titre">';
|
||||||
|
print '<td colspan="3">'.$langs->trans("LDAPSynchronizeMembers").'</td>';
|
||||||
|
print "</tr>\n";
|
||||||
|
|
||||||
|
// DN Pour les adherents
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td><b>'.$langs->trans("LDAPMemberDn").picto_required().'</b></td><td>';
|
||||||
|
print '<input size="38" type="text" name="user" value="'.$conf->global->LDAP_MEMBER_DN.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPMemberDnExample").'</td></tr>';
|
||||||
|
|
||||||
|
// DN pour les types
|
||||||
|
/*
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td><b>'.$langs->trans("LDAPMemberTypeDn").picto_required().'</b></td><td>';
|
||||||
|
print '<input size="38" type="text" name="group" value="'.$conf->global->LDAP_MEMBER_TYPE_DN.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPMemberTypeDnExample").'</td></tr>';
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Filtre
|
||||||
|
/*
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td><b>'.$langs->trans("LDAPFilterConnection").picto_required().'</b></td><td>';
|
||||||
|
print '<input size="38" type="text" name="filterconnection" value="'.$conf->global->LDAP_FILTER_CONNECTION.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPFilterConnectionExample").'</td></tr>';
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Name
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td><b>'.$langs->trans("LDAPFieldName").picto_required().'</b></td><td>';
|
||||||
|
print '<input size="25" type="text" name="fieldname" value="'.$conf->global->LDAP_FIELD_NAME.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPFieldNameExample").'</td></tr>';
|
||||||
|
|
||||||
|
// Firstname
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldFirstName").'</td><td>';
|
||||||
|
print '<input size="25" type="text" name="fieldfirstname" value="'.$conf->global->LDAP_FIELD_FIRSTNAME.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPFieldFirstNameExample").'</td></tr>';
|
||||||
|
|
||||||
|
// Login unix
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldLoginUnix").'</td><td>';
|
||||||
|
print '<input size="25" type="text" name="fieldlogin" value="'.$conf->global->LDAP_FIELD_LOGIN.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPFieldLoginExample").'</td></tr>';
|
||||||
|
|
||||||
|
// Login samba
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldLoginSamba").'</td><td>';
|
||||||
|
print '<input size="25" type="text" name="fieldloginsamba" value="'.$conf->global->LDAP_FIELD_LOGIN_SAMBA.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPFieldLoginSambaExample").'</td></tr>';
|
||||||
|
|
||||||
|
// Mail
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldMail").'</td><td>';
|
||||||
|
print '<input size="25" type="text" name="fieldmail" value="'.$conf->global->LDAP_FIELD_MAIL.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPFieldMailExample").'</td></tr>';
|
||||||
|
|
||||||
|
// Phone
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldPhone").'</td><td>';
|
||||||
|
print '<input size="25" type="text" name="fieldphone" value="'.$conf->global->LDAP_FIELD_PHONE.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPFieldPhoneExample").'</td></tr>';
|
||||||
|
|
||||||
|
// Fax
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldFax").'</td><td>';
|
||||||
|
print '<input size="25" type="text" name="fieldfax" value="'.$conf->global->LDAP_FIELD_FAX.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPFieldFaxExample").'</td></tr>';
|
||||||
|
|
||||||
|
// Mobile
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldMobile").'</td><td>';
|
||||||
|
print '<input size="25" type="text" name="fieldmobile" value="'.$conf->global->LDAP_FIELD_MOBILE.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPFieldMobileExample").'</td></tr>';
|
||||||
|
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td colspan="3" align="center"><input type="submit" class="button" value="'.$langs->trans("Modify").'"></td></tr>';
|
||||||
|
print '</table>';
|
||||||
|
|
||||||
|
print '</form>';
|
||||||
|
|
||||||
|
print '</div>';
|
||||||
|
|
||||||
|
print info_admin($langs->trans("LDAPDescValues"));
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Test de la connexion
|
||||||
|
*/
|
||||||
|
if (function_exists("ldap_connect"))
|
||||||
|
{
|
||||||
|
if ($conf->global->LDAP_SERVER_HOST && $conf->global->LDAP_MEMBERS_ACTIVE)
|
||||||
|
{
|
||||||
|
print '<br>';
|
||||||
|
print '<a class="tabAction" href="'.$_SERVER["PHP_SELF"].'?action=testmember">'.$langs->trans("LDAPTestSynchroMember").'</a>';
|
||||||
|
// print '<a class="tabAction" href="'.$_SERVER["PHP_SELF"].'?action=testtype">'.$langs->trans("LDAPTestSynchroTypeMember").'</a>';
|
||||||
|
print '<br><br>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($_GET["action"] == 'testmember')
|
||||||
|
{
|
||||||
|
// Creation adherent
|
||||||
|
$adherent=new Adherent($db);
|
||||||
|
$adherent->initAsSpecimen();
|
||||||
|
|
||||||
|
// Test synchro
|
||||||
|
//$result1=$fuser->delete_ldap($user);
|
||||||
|
$result2=$adherent->update_ldap($user);
|
||||||
|
$result3=$adherent->delete_ldap($user);
|
||||||
|
|
||||||
|
if ($result2 > 0)
|
||||||
|
{
|
||||||
|
print img_picto('','info').' ';
|
||||||
|
print '<font class="ok">'.$langs->trans("LDAPSynchroOK").'</font><br>';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print img_picto('','error').' ';
|
||||||
|
print '<font class="warning">'.$langs->trans("LDAPSynchroKO");
|
||||||
|
print ': '.$adherent->error;
|
||||||
|
print '</font><br>';
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($_GET["action"] == 'testtype')
|
||||||
|
{
|
||||||
|
// Creation type adherent
|
||||||
|
$typeadherent=new AdherentType($db);
|
||||||
|
$typeadherent->initAsSpecimen();
|
||||||
|
|
||||||
|
// Test synchro
|
||||||
|
//$result1=$fgroup->delete_ldap($user);
|
||||||
|
$result2=$typeadherent->update_ldap($user);
|
||||||
|
$result3=$typeadherent->delete_ldap($user);
|
||||||
|
|
||||||
|
if ($result2 > 0)
|
||||||
|
{
|
||||||
|
print img_picto('','info').' ';
|
||||||
|
print '<font class="ok">'.$langs->trans("LDAPSynchroOK").'</font><br>';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print img_picto('','error').' ';
|
||||||
|
print '<font class="warning">'.$langs->trans("LDAPSynchroKO");
|
||||||
|
print ': '.$typeadherent->error;
|
||||||
|
print '</font><br>';
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$db->close();
|
||||||
|
|
||||||
|
llxFooter('$Date$ - $Revision$');
|
||||||
|
|
||||||
|
?>
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\file htdocs/admin/ldap.php
|
\file htdocs/admin/ldap_users.php
|
||||||
\ingroup ldap
|
\ingroup ldap
|
||||||
\brief Page d'administration/configuration du module Ldap
|
\brief Page d'administration/configuration du module Ldap
|
||||||
\version $Revision$
|
\version $Revision$
|
||||||
@@ -144,23 +144,13 @@ print '<tr '.$bc[$var].'><td><b>'.$langs->trans("LDAPGroupDn").picto_required().
|
|||||||
print '<input size="38" type="text" name="group" value="'.$conf->global->LDAP_GROUP_DN.'">';
|
print '<input size="38" type="text" name="group" value="'.$conf->global->LDAP_GROUP_DN.'">';
|
||||||
print '</td><td>'.$langs->trans("LDAPGroupDnExample").'</td></tr>';
|
print '</td><td>'.$langs->trans("LDAPGroupDnExample").'</td></tr>';
|
||||||
|
|
||||||
// Filtre de connexion
|
// Filtre
|
||||||
|
/*
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
print '<tr '.$bc[$var].'><td><b>'.$langs->trans("LDAPFilterConnection").picto_required().'</b></td><td>';
|
print '<tr '.$bc[$var].'><td><b>'.$langs->trans("LDAPFilterConnection").picto_required().'</b></td><td>';
|
||||||
print '<input size="38" type="text" name="filterconnection" value="'.$conf->global->LDAP_FILTER_CONNECTION.'">';
|
print '<input size="38" type="text" name="filterconnection" value="'.$conf->global->LDAP_FILTER_CONNECTION.'">';
|
||||||
print '</td><td>'.$langs->trans("LDAPFilterConnectionExample").'</td></tr>';
|
print '</td><td>'.$langs->trans("LDAPFilterConnectionExample").'</td></tr>';
|
||||||
|
*/
|
||||||
// Login unix
|
|
||||||
$var=!$var;
|
|
||||||
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldLoginUnix").'</td><td>';
|
|
||||||
print '<input size="25" type="text" name="fieldlogin" value="'.$conf->global->LDAP_FIELD_LOGIN.'">';
|
|
||||||
print '</td><td>'.$langs->trans("LDAPFieldLoginExample").'</td></tr>';
|
|
||||||
|
|
||||||
// Login samba
|
|
||||||
$var=!$var;
|
|
||||||
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldLoginSamba").'</td><td>';
|
|
||||||
print '<input size="25" type="text" name="fieldloginsamba" value="'.$conf->global->LDAP_FIELD_LOGIN_SAMBA.'">';
|
|
||||||
print '</td><td>'.$langs->trans("LDAPFieldLoginSambaExample").'</td></tr>';
|
|
||||||
|
|
||||||
// Name
|
// Name
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
@@ -174,6 +164,18 @@ print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldFirstName").'</td><td>';
|
|||||||
print '<input size="25" type="text" name="fieldfirstname" value="'.$conf->global->LDAP_FIELD_FIRSTNAME.'">';
|
print '<input size="25" type="text" name="fieldfirstname" value="'.$conf->global->LDAP_FIELD_FIRSTNAME.'">';
|
||||||
print '</td><td>'.$langs->trans("LDAPFieldFirstNameExample").'</td></tr>';
|
print '</td><td>'.$langs->trans("LDAPFieldFirstNameExample").'</td></tr>';
|
||||||
|
|
||||||
|
// Login unix
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldLoginUnix").'</td><td>';
|
||||||
|
print '<input size="25" type="text" name="fieldlogin" value="'.$conf->global->LDAP_FIELD_LOGIN.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPFieldLoginExample").'</td></tr>';
|
||||||
|
|
||||||
|
// Login samba
|
||||||
|
$var=!$var;
|
||||||
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldLoginSamba").'</td><td>';
|
||||||
|
print '<input size="25" type="text" name="fieldloginsamba" value="'.$conf->global->LDAP_FIELD_LOGIN_SAMBA.'">';
|
||||||
|
print '</td><td>'.$langs->trans("LDAPFieldLoginSambaExample").'</td></tr>';
|
||||||
|
|
||||||
// Mail
|
// Mail
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldMail").'</td><td>';
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldMail").'</td><td>';
|
||||||
|
|||||||
Reference in New Issue
Block a user