Line 1... |
Line 1... |
1 |
<?php
|
1 |
<?php
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
4 |
// | PHP version 4.1 |
|
4 |
// | PHP version 4.1 |
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
8 |
// | This library is free software; you can redistribute it and/or |
|
8 |
// | This library is free software; you can redistribute it and/or |
|
9 |
// | modify it under the terms of the GNU Lesser General Public |
|
9 |
// | modify it under the terms of the GNU Lesser General Public |
|
10 |
// | License as published by the Free Software Foundation; either |
|
10 |
// | License as published by the Free Software Foundation; either |
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
12 |
// | |
|
12 |
// | |
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
16 |
// | Lesser General Public License for more details. |
|
16 |
// | Lesser General Public License for more details. |
|
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$
|
22 |
// CVS : $Id$
|
23 |
/**
|
23 |
/**
|
24 |
* Fonctions d'abonnement a afficher dans la fiche du bottin
|
24 |
* Fonctions d'abonnement a afficher dans la fiche du bottin
|
25 |
*
|
25 |
*
|
26 |
*
|
26 |
*
|
27 |
*@package inscription
|
27 |
*@package inscription
|
28 |
//Auteur original :
|
28 |
//Auteur original :
|
29 |
*@author Florian Schmitt <florian@ecole-et-nature.org>
|
29 |
*@author Florian Schmitt <florian@ecole-et-nature.org>
|
30 |
//Autres auteurs :
|
30 |
//Autres auteurs :
|
31 |
*
|
31 |
*
|
32 |
*@copyright Outils-Reseaux 2006-2010
|
32 |
*@copyright Outils-Reseaux 2006-2010
|
33 |
*@version $Revision$ $Date$
|
33 |
*@version $Revision$ $Date$
|
34 |
*@version $Revision$ $Date$
|
34 |
*@version $Revision$ $Date$
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
*/
|
36 |
*/
|
37 |
|
37 |
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
39 |
// | ENTETE du PROGRAMME |
|
39 |
// | ENTETE du PROGRAMME |
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
41 |
|
41 |
|
42 |
include_once PAP_CHEMIN_RACINE.'client/bazar/configuration/baz_config.inc.php' ;
|
42 |
include_once PAP_CHEMIN_RACINE.'client/bazar/configuration/baz_config.inc.php' ;
|
43 |
include_once PAP_CHEMIN_RACINE.'client/bazar/bibliotheque/bazar.fonct.php' ;
|
43 |
include_once PAP_CHEMIN_RACINE.'client/bazar/bibliotheque/bazar.fonct.php' ;
|
44 |
|
44 |
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
46 |
// | LISTE de FONCTIONS |
|
46 |
// | LISTE de FONCTIONS |
|
47 |
// +------------------------------------------------------------------------------------------------------+
|
47 |
// +------------------------------------------------------------------------------------------------------+
|
48 |
$GLOBALS['id_user']=$id;
|
48 |
$GLOBALS['id_user']=$id;
|
49 |
if (isset($_GET[BAZ_VARIABLE_ACTION]) && $_GET[BAZ_VARIABLE_ACTION]==BAZ_VOIR_FLUX_RSS) {
|
49 |
if (isset($_GET[BAZ_VARIABLE_ACTION]) && $_GET[BAZ_VARIABLE_ACTION]==BAZ_VOIR_FLUX_RSS) {
|
50 |
header('Content-type: text/xml; charset=ISO-8859-1');
|
50 |
header('Content-type: text/xml; charset=ISO-8859-1');
|
51 |
include(PAP_CHEMIN_RACINE.'client/bazar/bazarRSS.php');exit(0);break;
|
51 |
include(PAP_CHEMIN_RACINE.'client/bazar/bazarRSS.php');exit(0);break;
|
52 |
} else {
|
52 |
} else {
|
53 |
$abonnement = baz_s_inscrire();
|
53 |
$abonnement = baz_s_inscrire();
|
54 |
}
|
54 |
}
|
55 |
|
55 |
|
56 |
|
56 |
|
57 |
//-- Fin du code source ------------------------------------------------------------
|
57 |
//-- Fin du code source ------------------------------------------------------------
|
58 |
/*
|
58 |
/*
|
59 |
* $Log$
|
59 |
* $Log$
|
- |
|
60 |
* Revision 1.3 2008-09-17 14:08:45 alexandre_tb
|
- |
|
61 |
* merge depuis aha
|
- |
|
62 |
*
|
60 |
* Revision 1.2 2006-10-05 08:53:50 florian
|
63 |
* Revision 1.2 2006-10-05 08:53:50 florian
|
61 |
* amelioration moteur de recherche, correction de bugs
|
64 |
* amelioration moteur de recherche, correction de bugs
|
62 |
*
|
65 |
*
|
63 |
* Revision 1.1 2006/04/28 12:46:14 florian
|
66 |
* Revision 1.1 2006/04/28 12:46:14 florian
|
64 |
* integration des liens vers annuaire
|
67 |
* integration des liens vers annuaire
|
65 |
*
|
68 |
*
|
66 |
*
|
69 |
*
|
67 |
*/
|
70 |
*/
|
68 |
?>
|
71 |
?>
|
69 |
|
72 |
|