Line 17... |
Line 17... |
17 |
// | |
|
17 |
// | |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
22 |
// CVS : $Id: admin_auth.php,v 1.4 2005-04-14 13:54:51 jpm Exp $
|
22 |
// CVS : $Id: admin_auth.php,v 1.5 2006-09-21 15:22:04 jp_milcent Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Application gérant les authentifications de Papyrus
|
24 |
* Application gérant les authentifications de Papyrus
|
25 |
*
|
25 |
*
|
26 |
* Cette application permet de gérer les authentifications de papyrus
|
26 |
* Cette application permet de gérer les authentifications de papyrus
|
27 |
* elle permet de spécifier pour un monde quel annuaire utiliser
|
27 |
* elle permet de spécifier pour un monde quel annuaire utiliser
|
Line 29... |
Line 29... |
29 |
*
|
29 |
*
|
30 |
*@package Admin_auth
|
30 |
*@package Admin_auth
|
31 |
//Auteur original :
|
31 |
//Auteur original :
|
32 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
32 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
33 |
*@copyright Tela-Botanica 2000-2004
|
33 |
*@copyright Tela-Botanica 2000-2004
|
34 |
*@version $Revision: 1.4 $
|
34 |
*@version $Revision: 1.5 $
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
*/
|
36 |
*/
|
Line 37... |
Line 37... |
37 |
|
37 |
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
Line 146... |
Line 146... |
146 |
array_push ($tableau_auth, array ('<a href="'.$url->getURL().'">'.$ligne[1].'</a>'."\n", // Première colonne, le nom de l'authentification
|
146 |
array_push ($tableau_auth, array ('<a href="'.$url->getURL().'">'.$ligne[1].'</a>'."\n", // Première colonne, le nom de l'authentification
|
147 |
$ligne[2], // deuxième colonne, le nom de la table d'annuaire
|
147 |
$ligne[2], // deuxième colonne, le nom de la table d'annuaire
|
148 |
'<a href="'.$url->getURL().'">'.ADAU_MODIFIER.'</a>'."\n", // Colonne modifier
|
148 |
'<a href="'.$url->getURL().'">'.ADAU_MODIFIER.'</a>'."\n", // Colonne modifier
|
149 |
'<a href="'.$url->getURL().'&action=supprimer" onclick="javascript:return confirm(\''.ADAU_SUPPRIMER_MESSAGE.'\');">'.ADAU_SUPPRIMER.'</a>'."\n"
|
149 |
'<a href="'.$url->getURL().'&action=supprimer" onclick="javascript:return confirm(\''.ADAU_SUPPRIMER_MESSAGE.'\');">'.ADAU_SUPPRIMER.'</a>'."\n"
|
150 |
));
|
150 |
));
|
- |
|
151 |
$url->removeQueryString('id_auth');
|
151 |
}
|
152 |
}
|
152 |
$liste->construireListe($tableau_auth);
|
153 |
$liste->construireListe($tableau_auth);
|
153 |
$res .= $liste->toHTML();
|
154 |
$res .= $liste->toHTML();
|
154 |
return $res;
|
155 |
return $res;
|
155 |
}// Fin de la fonction afficherContenuCorps()
|
156 |
}// Fin de la fonction afficherContenuCorps()
|
Line 161... |
Line 162... |
161 |
|
162 |
|
162 |
|
163 |
|
163 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
164 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
- |
|
165 |
*
|
- |
|
166 |
* $Log: not supported by cvs2svn $
|
- |
|
167 |
* Revision 1.4 2005/04/14 13:54:51 jpm
|
164 |
*
|
168 |
* Amélioration de l'interface et mise en conformité.
|
165 |
* $Log: not supported by cvs2svn $
|
169 |
*
|
166 |
* Revision 1.3 2005/03/09 10:50:08 jpm
|
170 |
* Revision 1.3 2005/03/09 10:50:08 jpm
|
167 |
* Changement d'un nom de fichier.
|
171 |
* Changement d'un nom de fichier.
|
168 |
*
|
172 |
*
|