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