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.60 2007-02-15 14:18:38 jp_milcent Exp $
|
22 |
// CVS : $Id: bazar.fonct.php,v 1.61 2007-02-28 10:23:46 alexandre_tb 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.60 $ $Date: 2007-02-15 14:18:38 $
|
34 |
*@version $Revision: 1.61 $ $Date: 2007-02-28 10:23:46 $
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
*/
|
36 |
*/
|
Line 37... |
Line 37... |
37 |
|
37 |
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
Line 220... |
Line 220... |
220 |
$res .= '<br /><ul><li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'" title="'.BAZ_SAISIR_UNE_NOUVELLE_FICHE.'">'.BAZ_SAISIR_UNE_NOUVELLE_FICHE.'</a></li></ul>';
|
220 |
$res .= '<br /><ul><li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'" title="'.BAZ_SAISIR_UNE_NOUVELLE_FICHE.'">'.BAZ_SAISIR_UNE_NOUVELLE_FICHE.'</a></li></ul>';
|
221 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
221 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
222 |
}
|
222 |
}
|
223 |
else {
|
223 |
else {
|
224 |
$res .= '<p class="zone_info">'.BAZ_IDENTIFIEZ_VOUS_POUR_SAISIR.'</p>'."\n" ;
|
224 |
$res .= '<p class="zone_info">'.BAZ_IDENTIFIEZ_VOUS_POUR_SAISIR.'</p>'."\n" ;
|
225 |
$res .= '<form id="form_connexion" style="clear:both;" class="form_identification" action="' ;
|
225 |
$res .= '<form id="form_connexion" class="form_identification" action="' ;
|
226 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ACTION_VOIR_VOS_ANNONCES);
|
226 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ACTION_VOIR_VOS_ANNONCES);
|
227 |
$res .= $GLOBALS['_BAZAR_']['url']->getURL();
|
227 |
$res .= $GLOBALS['_BAZAR_']['url']->getURL();
|
228 |
$res .= '" method="post">
|
228 |
$res .= '" method="post">
|
229 |
<fieldset>
|
229 |
<fieldset>
|
230 |
<legend>Identifiez vous</legend>
|
230 |
<legend>Identifiez vous</legend>
|
Line 571... |
Line 571... |
571 |
}
|
571 |
}
|
572 |
}
|
572 |
}
|
573 |
else {
|
573 |
else {
|
574 |
$res .= '<h2>'.BAZ_DEPOSE_UNE_NOUVELLE_ANNONCE.'</h2><br />'."\n";
|
574 |
$res .= '<h2>'.BAZ_DEPOSE_UNE_NOUVELLE_ANNONCE.'</h2><br />'."\n";
|
575 |
$res .= '<p class="zone_info">'.BAZ_IDENTIFIEZ_VOUS_POUR_SAISIR.'</p>'."\n" ;
|
575 |
$res .= '<p class="zone_info">'.BAZ_IDENTIFIEZ_VOUS_POUR_SAISIR.'</p>'."\n" ;
|
576 |
$res .= '<form id="form_connexion" style="clear:both;" class="form_identification" action="' ;
|
576 |
$res .= '<form id="form_connexion" class="form_identification" action="' ;
|
577 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_DEPOSER_ANNONCE);
|
577 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_DEPOSER_ANNONCE);
|
578 |
$res .= $GLOBALS['_BAZAR_']['url']->getURL();
|
578 |
$res .= $GLOBALS['_BAZAR_']['url']->getURL();
|
579 |
$res .= '" method="post">
|
579 |
$res .= '" method="post">
|
580 |
<fieldset>
|
580 |
<fieldset>
|
581 |
<legend>Identifiez vous</legend>
|
581 |
<legend>Identifiez vous</legend>
|
Line 1253... |
Line 1253... |
1253 |
}
|
1253 |
}
|
Line 1254... |
Line 1254... |
1254 |
|
1254 |
|
1255 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
1255 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
1256 |
*
|
1256 |
*
|
- |
|
1257 |
* $Log: not supported by cvs2svn $
|
- |
|
1258 |
* Revision 1.60 2007/02/15 14:18:38 jp_milcent
|
- |
|
1259 |
* Fusion avec la livraison Menes : 15 février 2007
|
1257 |
* $Log: not supported by cvs2svn $
|
1260 |
*
|
1258 |
* Revision 1.59 2007/01/22 16:05:56 alexandre_tb
|
1261 |
* 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)
|
1262 |
* 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 |
*
|
1263 |
*
|
1261 |
* Revision 1.57.2.6 2007/02/15 13:42:16 jp_milcent
|
1264 |
* Revision 1.57.2.6 2007/02/15 13:42:16 jp_milcent
|