Subversion Repositories Applications.bazar

Rev

Rev 8 | Rev 121 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8 Rev 112
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: bazar.inscription.inc.php,v 1.1 2005-09-29 16:14:17 alexandre_tb Exp $
22
// CVS : $Id: bazar.inscription.inc.php,v 1.2 2006-03-29 13:06:07 alexandre_tb Exp $
23
/**
23
/**
24
* 
24
* 
25
*@package bazar
25
*@package bazar
26
//Auteur original :
26
//Auteur original :
27
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
27
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
28
*@author        Florian Schmitt <florian@ecole-et-nature.org>
28
*@author        Florian Schmitt <florian@ecole-et-nature.org>
29
//Autres auteurs :
29
//Autres auteurs :
30
*@copyright     Tela-Botanica 2000-2005
30
*@copyright     Tela-Botanica 2000-2005
31
*@version       $Revision: 1.1 $
31
*@version       $Revision: 1.2 $
32
// +------------------------------------------------------------------------------------------------------+
32
// +------------------------------------------------------------------------------------------------------+
33
*/
33
*/
Line 34... Line -...
34
 
-
 
35
// +------------------------------------------------------------------------------------------------------+
34
 
36
// |                             LES CONSTANTES DES ACTIONS DE BAZAR                                      |
-
 
Line 37... Line 35...
37
// +------------------------------------------------------------------------------------------------------+
35
// RAPPEL : On se situe dans la fonction afficherContenuCorps() de inscription.php 
38
 
36
 
39
// +------------------------------------------------------------------------------------------------------+
37
// requete pour récupérer l'ensemble des type d'annonces
Line -... Line 38...
-
 
38
$requete = 'select bn_id_nature from bazar_nature where bn_id_nature <> 2' ;
-
 
39
$resultat = $GLOBALS['ins_db']->query ($requete);
-
 
40
 
40
// |                                            ENTETE du PROGRAMME                                       |
41
$SQL = '' ;
-
 
42
 
-
 
43
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT)) {
-
 
44
	$SQL .= '('.$id_utilisateur.', '.$ligne->bn_id_nature.', 1),' ;	
-
 
45
}
41
// +------------------------------------------------------------------------------------------------------+
46
 
-
 
47
$SQL = substr ($SQL, 0, strlen ($SQL) - 1) ;
42
 
48
 
-
 
49
$requete = 'INSERT INTO bazar_droits VALUES '.$SQL;
-
 
50
 
-
 
51
if ($GLOBALS['AUTH']->getAuthData(INS_CHAMPS_EST_STRUCTURE) == 1) $requete.=',('.$id_utilisateur.',2,1)' ;
-
 
52
$resultat = $GLOBALS['ins_db']->query($requete);
-
 
53
if (DB::isError($resultat)) {
Line 43... Line 54...
43
// +------------------------------------------------------------------------------------------------------+
54
	echo ($resultat->getMessage().$resultat->getDebugInfo()) ;
44
// |                                           LISTE de FONCTIONS                                         |
55
}
45
// +------------------------------------------------------------------------------------------------------+
56
unset($resultat) ;
-
 
57
 
-
 
58
/* +--Fin du code ----------------------------------------------------------------------------------------+
-
 
59
*
46
 
60
* $Log: not supported by cvs2svn $
47
/* +--Fin du code ----------------------------------------------------------------------------------------+
61
* Revision 1.1  2005/09/29 16:14:17  alexandre_tb
48
*
62
* version initiale
49
* $Log: not supported by cvs2svn $
63
*