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.php,v 1.32 2006-06-21 15:40:15 alexandre_tb Exp $
|
22 |
// CVS : $Id: bazar.php,v 1.33 2006-06-21 15:41:42 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-2004
|
30 |
*@copyright Tela-Botanica 2000-2004
|
31 |
*@version $Revision: 1.32 $ $Date: 2006-06-21 15:40:15 $
|
31 |
*@version $Revision: 1.33 $ $Date: 2006-06-21 15:41:42 $
|
32 |
// +------------------------------------------------------------------------------------------------------+
|
32 |
// +------------------------------------------------------------------------------------------------------+
|
33 |
*/
|
33 |
*/
|
Line 34... |
Line 34... |
34 |
|
34 |
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
Line 176... |
Line 176... |
176 |
$res.='<h1>'.$GLOBALS['_GEN_commun']['info_menu']->gm_titre.'</h1>'."\n";
|
176 |
$res.='<h1>'.$GLOBALS['_GEN_commun']['info_menu']->gm_titre.'</h1>'."\n";
|
Line 177... |
Line 177... |
177 |
|
177 |
|
178 |
if (isset($_GET['action'])) {
|
178 |
if (isset($_GET['action'])) {
|
179 |
if (($_GET['action']!=BAZ_ACTION_NOUVEAU_V)and($_GET['action']!=BAZ_ACTION_MODIFIER_V)) unset($_SESSION['formulaire_annonce_valide']);
|
179 |
if (($_GET['action']!=BAZ_ACTION_NOUVEAU_V)and($_GET['action']!=BAZ_ACTION_MODIFIER_V)) unset($_SESSION['formulaire_annonce_valide']);
|
180 |
switch ($_GET['action']) {
|
180 |
switch ($_GET['action']) {
|
181 |
case BAZ_VOIR_VOS_ANNONCES : $res .= mes_fiches(); break;
|
181 |
case BAZ_ACTION_VOIR_VOS_ANNONCES : $res .= mes_fiches(); break;
|
182 |
case BAZ_VOIR_TOUTES_ANNONCES : $res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']); break;
|
182 |
case BAZ_VOIR_TOUTES_ANNONCES : $res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']); break;
|
183 |
case BAZ_DEPOSER_ANNONCE : $res .= baz_formulaire(BAZ_DEPOSER_ANNONCE); break;
|
183 |
case BAZ_DEPOSER_ANNONCE : $res .= baz_formulaire(BAZ_DEPOSER_ANNONCE); break;
|
184 |
case BAZ_ANNONCES_A_VALIDER : $res .= fiches_a_valider().baz_liste(); break;
|
184 |
case BAZ_ANNONCES_A_VALIDER : $res .= fiches_a_valider().baz_liste(); break;
|
185 |
case BAZ_ADMINISTRER_ANNONCES : $res .= baz_administrer_annonces(); break;
|
185 |
case BAZ_ADMINISTRER_ANNONCES : $res .= baz_administrer_annonces(); break;
|
Line 207... |
Line 207... |
207 |
|
207 |
|
208 |
|
208 |
|
209 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
209 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
- |
|
210 |
*
|
- |
|
211 |
* $Log: not supported by cvs2svn $
|
- |
|
212 |
* Revision 1.32 2006/06/21 15:40:15 alexandre_tb
|
210 |
*
|
213 |
* rétablissement du menu mes fiches
|
211 |
* $Log: not supported by cvs2svn $
|
214 |
*
|
212 |
* Revision 1.31 2006/05/19 13:54:32 florian
|
215 |
* Revision 1.31 2006/05/19 13:54:32 florian
|
213 |
* stabilisation du moteur de recherche, corrections bugs, lien recherche avancee
|
216 |
* stabilisation du moteur de recherche, corrections bugs, lien recherche avancee
|
214 |
*
|
217 |
*
|