fix emplacement contrainte
This commit is contained in:
parent
b1033943a5
commit
dbfb63e160
1 changed files with 9 additions and 9 deletions
|
@ -19,18 +19,18 @@ if (count($fiches) > 0) {
|
|||
));
|
||||
$foundFiche = true;
|
||||
echo '<h2 class="entry-title"><a class="modalbox" title="'.htmlspecialchars('Trajet du '.$date).'" href="'.$GLOBALS['wiki']->href('', $fiche['id_fiche']).'">Trajet du '.$dateFormatted.'</a> par '.$fiche['owner'].'</h2>'."\n";
|
||||
echo '<h4>Producteur concerné</h4>'."\n";
|
||||
if (!empty($fiche['bf_contrainte_date'])) {
|
||||
$dateTimeObjContrainte = new DateTime($fiche['bf_contrainte_date'], new DateTimeZone('Europe/Paris'));
|
||||
$dateContrainte =
|
||||
str_replace(' à 0:00', '', IntlDateFormatter::formatObject(
|
||||
$dateTimeObjContrainte,
|
||||
'eeee d MMMM y à HH:mm',
|
||||
'fr'
|
||||
));
|
||||
$dateTimeObjContrainte = new DateTime($fiche['bf_contrainte_date'], new DateTimeZone('Europe/Paris'));
|
||||
$dateContrainte =
|
||||
str_replace(' à 0:00', '', IntlDateFormatter::formatObject(
|
||||
$dateTimeObjContrainte,
|
||||
'eeee d MMMM y à HH:mm',
|
||||
'fr'
|
||||
));
|
||||
|
||||
echo '<div class="alert alert-warning">Pour laisser le temps au producteur de préparer les commandes, ce trajet sera fermé le '.$dateContrainte.'.</div>';
|
||||
echo '<div class="alert alert-warning">Pour laisser le temps au producteur de préparer les commandes, ce trajet sera fermé le '.$dateContrainte.'.</div>';
|
||||
}
|
||||
echo '<h4>Producteur concerné</h4>'."\n";
|
||||
echo '<p class="producteur"><strong>'.$producteur['bf_titre'].'</strong></p>';
|
||||
|
||||
echo '<p class="nature"><strong>Produits possibles</strong> : '.str_replace(',', ', ', $producteur['checkboxListeProduitsVendusproduits_vendus']).'</p>';
|
||||
|
|
Loading…
Reference in a new issue