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.fonct.php,v 1.59 2007-01-22 16:05:56 alexandre_tb Exp $
|
22 |
// CVS : $Id: bazar.fonct.php,v 1.60 2007-02-15 14:18:38 jp_milcent Exp $
|
23 |
/**
|
23 |
/**
|
24 |
*
|
24 |
*
|
25 |
* Fonctions du module bazar
|
25 |
* Fonctions du module bazar
|
26 |
*
|
26 |
*
|
27 |
*
|
27 |
*
|
Line 29... |
Line 29... |
29 |
//Auteur original :
|
29 |
//Auteur original :
|
30 |
*@author Alexandre Granier <alexandre@tela-botanica.org>
|
30 |
*@author Alexandre Granier <alexandre@tela-botanica.org>
|
31 |
*@author Florian Schmitt <florian@ecole-et-nature.org>
|
31 |
*@author Florian Schmitt <florian@ecole-et-nature.org>
|
32 |
//Autres auteurs :
|
32 |
//Autres auteurs :
|
33 |
*@copyright Tela-Botanica 2000-2004
|
33 |
*@copyright Tela-Botanica 2000-2004
|
34 |
*@version $Revision: 1.59 $ $Date: 2007-01-22 16:05:56 $
|
34 |
*@version $Revision: 1.60 $ $Date: 2007-02-15 14:18:38 $
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
*/
|
36 |
*/
|
Line 37... |
Line 37... |
37 |
|
37 |
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
Line 80... |
Line 80... |
80 |
*/
|
80 |
*/
|
81 |
function fiches_a_valider() {
|
81 |
function fiches_a_valider() {
|
82 |
// Pour les administrateurs d'une rubrique, on affiche les fiches a valider de cette rubrique
|
82 |
// Pour les administrateurs d'une rubrique, on affiche les fiches a valider de cette rubrique
|
83 |
// On effectue une requete sur le bazar pour voir les fiches a administrer
|
83 |
// On effectue une requete sur le bazar pour voir les fiches a administrer
|
84 |
$res= '<h2>'.BAZ_ANNONCES_A_ADMINISTRER.'</h2><br />'."\n";
|
84 |
$res= '<h2>'.BAZ_ANNONCES_A_ADMINISTRER.'</h2><br />'."\n";
|
85 |
$requete = 'SELECT * FROM bazar_fiche, bazar_nature WHERE bf_statut_fiche=0 AND bn_id_nature=bf_ce_nature AND bn_ce_id_menu='.$GLOBALS['_BAZAR_']['categorie_nature'].' ORDER BY bf_date_maj_fiche DESC' ;
|
85 |
$requete = 'SELECT * FROM bazar_fiche, bazar_nature WHERE bf_statut_fiche=0 AND bn_id_nature=bf_ce_nature AND bn_ce_id_menu IN ('.$GLOBALS['_BAZAR_']['categorie_nature'].') ORDER BY bf_date_maj_fiche DESC' ;
|
86 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
86 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
87 |
if (DB::isError($resultat)) {
|
87 |
if (DB::isError($resultat)) {
|
88 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
88 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
89 |
}
|
89 |
}
|
90 |
if ($resultat->numRows() != 0) {
|
90 |
if ($resultat->numRows() != 0) {
|
Line 160... |
Line 160... |
160 |
function mes_fiches() {
|
160 |
function mes_fiches() {
|
161 |
$res= '<h2>'.BAZ_VOS_ANNONCES.'</h2><br />'."\n";
|
161 |
$res= '<h2>'.BAZ_VOS_ANNONCES.'</h2><br />'."\n";
|
162 |
if ($GLOBALS['AUTH']->getAuth()) {
|
162 |
if ($GLOBALS['AUTH']->getAuth()) {
|
163 |
// requete pour voir si l'utilisateur a des fiches a son nom, classees par date de MAJ et nature d'annonce
|
163 |
// requete pour voir si l'utilisateur a des fiches a son nom, classees par date de MAJ et nature d'annonce
|
164 |
$requete = 'SELECT * FROM bazar_fiche, bazar_nature WHERE bf_ce_utilisateur='. $GLOBALS['id_user'].
|
164 |
$requete = 'SELECT * FROM bazar_fiche, bazar_nature WHERE bf_ce_utilisateur='. $GLOBALS['id_user'].
|
165 |
' AND bn_id_nature=bf_ce_nature AND bn_ce_id_menu='.$GLOBALS['_BAZAR_']['categorie_nature'].' ORDER BY bf_date_maj_fiche DESC,bf_ce_nature ASC';
|
165 |
' AND bn_id_nature=bf_ce_nature AND bn_ce_id_menu IN ('.$GLOBALS['_BAZAR_']['categorie_nature'].') ORDER BY bf_date_maj_fiche DESC,bf_ce_nature ASC';
|
166 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
166 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
167 |
if (DB::isError($resultat)) {
|
167 |
if (DB::isError($resultat)) {
|
168 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
168 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
169 |
}
|
169 |
}
|
170 |
if ($resultat->numRows() != 0) {
|
170 |
if ($resultat->numRows() != 0) {
|
Line 480... |
Line 480... |
480 |
//AFFICHAGE DU FORMULAIRE GENERAL DE CHOIX DU TYPE D'ANNONCE
|
480 |
//AFFICHAGE DU FORMULAIRE GENERAL DE CHOIX DU TYPE D'ANNONCE
|
481 |
//------------------------------------------------------------------------------------------------
|
481 |
//------------------------------------------------------------------------------------------------
|
482 |
if ($mode == BAZ_DEPOSER_ANNONCE) {
|
482 |
if ($mode == BAZ_DEPOSER_ANNONCE) {
|
483 |
$res = '';
|
483 |
$res = '';
|
484 |
//requete pour obtenir le nom et la description des types d'annonce
|
484 |
//requete pour obtenir le nom et la description des types d'annonce
|
485 |
$requete = 'SELECT * FROM bazar_nature WHERE bn_ce_id_menu='.$GLOBALS['_BAZAR_']['categorie_nature'].' ORDER BY bn_label_nature ASC';
|
485 |
$requete = 'SELECT * FROM bazar_nature WHERE bn_ce_id_menu IN ('.$GLOBALS['_BAZAR_']['categorie_nature'].') ORDER BY bn_label_nature ASC';
|
486 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
486 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
487 |
if (DB::isError($resultat)) {
|
487 |
if (DB::isError($resultat)) {
|
488 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
488 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
489 |
}
|
489 |
}
|
490 |
$res.='<h2>'.BAZ_DEPOSE_UNE_NOUVELLE_ANNONCE.'</h2>'."\n";
|
490 |
$res.='<h2>'.BAZ_DEPOSE_UNE_NOUVELLE_ANNONCE.'</h2>'."\n";
|
Line 765... |
Line 765... |
765 |
//requete d'insertion dans bazar_fiche
|
765 |
//requete d'insertion dans bazar_fiche
|
766 |
$GLOBALS['_BAZAR_']['id_fiche'] = baz_nextid('bazar_fiche', 'bf_id_fiche', $GLOBALS['_BAZAR_']['db']) ;
|
766 |
$GLOBALS['_BAZAR_']['id_fiche'] = baz_nextid('bazar_fiche', 'bf_id_fiche', $GLOBALS['_BAZAR_']['db']) ;
|
767 |
$requete = 'INSERT INTO bazar_fiche SET bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].','.
|
767 |
$requete = 'INSERT INTO bazar_fiche SET bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].','.
|
768 |
'bf_ce_utilisateur='.$GLOBALS['id_user'].', bf_ce_nature='.$GLOBALS['_BAZAR_']['id_typeannonce'].','.
|
768 |
'bf_ce_utilisateur='.$GLOBALS['id_user'].', bf_ce_nature='.$GLOBALS['_BAZAR_']['id_typeannonce'].','.
|
769 |
'bf_date_creation_fiche=NOW(),';
|
769 |
'bf_date_creation_fiche=NOW(),';
|
770 |
if ($GLOBALS['_BAZAR_']['appropriation']== 1) {
|
- |
|
771 |
$requete .= 'bf_date_debut_validite_fiche=now(), ' ;
|
- |
|
772 |
} else {
|
- |
|
773 |
if (!isset($_GET['bf_date_debut_validite_fiche'])) {
|
770 |
if (!isset($_REQUEST['bf_date_debut_validite_fiche'])) {
|
774 |
$requete .= 'bf_date_debut_validite_fiche=now(), ' ;
|
771 |
$requete .= 'bf_date_debut_validite_fiche=now(), bf_date_fin_validite_fiche="0000-00-00", ' ;
|
775 |
}
|
- |
|
776 |
}
|
772 |
}
|
777 |
$requete .=requete_bazar_fiche(&$valeur) ;
|
773 |
$requete .=requete_bazar_fiche(&$valeur) ;
|
778 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
774 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
779 |
if (DB::isError($resultat)) {
|
775 |
if (DB::isError($resultat)) {
|
780 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
776 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
Line 1257... |
Line 1253... |
1257 |
}
|
1253 |
}
|
Line 1258... |
Line 1254... |
1258 |
|
1254 |
|
1259 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
1255 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
1260 |
*
|
1256 |
*
|
- |
|
1257 |
* $Log: not supported by cvs2svn $
|
- |
|
1258 |
* Revision 1.59 2007/01/22 16:05:56 alexandre_tb
|
- |
|
1259 |
* backport : insertion de la date du jour dans bf_date_debut_validite_fiche quand il n'y a pas ce champs dans le formulaire (évite le 0000-00-00)
|
- |
|
1260 |
*
|
- |
|
1261 |
* Revision 1.57.2.6 2007/02/15 13:42:16 jp_milcent
|
- |
|
1262 |
* Utilisation de IN à la place du = dans les requêtes traitant les catégories de fiches.
|
- |
|
1263 |
* Permet d'utiliser la syntaxe 1,2,3 dans la configuration de categorie_nature.
|
- |
|
1264 |
*
|
- |
|
1265 |
* Revision 1.57.2.5 2007/02/12 16:16:31 alexandre_tb
|
- |
|
1266 |
* suppression du style clear:both dans les attribut du formulaire d identification
|
- |
|
1267 |
*
|
- |
|
1268 |
* Revision 1.57.2.4 2007/02/01 16:19:30 alexandre_tb
|
- |
|
1269 |
* correction erreur de requete sur insertion bazar_fiche
|
- |
|
1270 |
*
|
- |
|
1271 |
* Revision 1.57.2.3 2007/02/01 16:11:05 alexandre_tb
|
- |
|
1272 |
* correction erreur de requete sur insertion bazar_fiche
|
- |
|
1273 |
*
|
- |
|
1274 |
* Revision 1.57.2.2 2007/01/22 16:05:39 alexandre_tb
|
- |
|
1275 |
* insertion de la date du jour dans bf_date_debut_validite_fiche quand il n'y a pas ce champs dans le formulaire (évite le 0000-00-00)
|
- |
|
1276 |
*
|
- |
|
1277 |
* Revision 1.57.2.1 2006/12/13 13:23:03 alexandre_tb
|
- |
|
1278 |
* Remplacement de l appel d une constante par un appel direct. -> warning
|
1261 |
* $Log: not supported by cvs2svn $
|
1279 |
*
|
1262 |
* Revision 1.58 2006/12/13 13:20:16 alexandre_tb
|
1280 |
* Revision 1.58 2006/12/13 13:20:16 alexandre_tb
|
1263 |
* Remplacement de l appel d une constante par un appel direct. -> warning
|
1281 |
* Remplacement de l appel d une constante par un appel direct. -> warning
|
1264 |
*
|
1282 |
*
|
1265 |
* Revision 1.57 2006/10/05 08:53:50 florian
|
1283 |
* Revision 1.57 2006/10/05 08:53:50 florian
|