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_application.php,v 1.6 2006-10-06 10:40:51 florian Exp $
|
22 |
// CVS : $Id: admin_application.php,v 1.7 2006-12-01 10:39:14 alexandre_tb Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Application gérant les applications de Papyrus
|
24 |
* Application gérant les applications de Papyrus
|
25 |
*
|
25 |
*
|
26 |
* Cette application permet de gérer les applications de papyrus
|
26 |
* Cette application permet de gérer les applications 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.6 $
|
34 |
*@version $Revision: 1.7 $
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
*/
|
36 |
*/
|
Line 37... |
Line 37... |
37 |
|
37 |
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
Line 143... |
Line 143... |
143 |
}
|
143 |
}
|
Line 144... |
Line 144... |
144 |
|
144 |
|
145 |
}
|
145 |
}
|
146 |
// Comportement par défaut
|
146 |
// Comportement par défaut
|
147 |
// requete sur la table gen_application
|
147 |
// requete sur la table gen_application
|
Line 148... |
Line 148... |
148 |
$requete = 'SELECT gap_id_application, gap_nom FROM gen_application ORDER BY gap_nom ASC' ;
|
148 |
$requete = 'SELECT gap_id_application, gap_nom FROM gen_application where gap_id_application <> 0 ORDER BY gap_nom ASC' ;
|
149 |
|
149 |
|
150 |
$resultat = $db->query ($requete) ;
|
150 |
$resultat = $db->query ($requete) ;
|
151 |
if (DB::isError ($resultat)) {
|
151 |
if (DB::isError ($resultat)) {
|
Line 175... |
Line 175... |
175 |
|
175 |
|
176 |
|
176 |
|
177 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
177 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
- |
|
178 |
*
|
- |
|
179 |
* $Log: not supported by cvs2svn $
|
- |
|
180 |
* Revision 1.6 2006/10/06 10:40:51 florian
|
178 |
*
|
181 |
* harmonisation des messages d'erreur de l'authentification
|
179 |
* $Log: not supported by cvs2svn $
|
182 |
*
|
180 |
* Revision 1.5 2006/09/07 13:28:39 jp_milcent
|
183 |
* Revision 1.5 2006/09/07 13:28:39 jp_milcent
|
181 |
* Mise en majuscule des termes SQL et trie des application par ordre alphabétique.
|
184 |
* Mise en majuscule des termes SQL et trie des application par ordre alphabétique.
|
182 |
*
|
185 |
*
|