You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- $producer = $this->context->getProducer() ;
- $this->setPageTitle(Html::encode($producer->type.' à '.$producer->ville)) ;
- ?>
-
- <?php if(strlen($producer->description) || strlen($producer->photo)): ?>
- <?php
- if(strlen($producer->description) && strlen($producer->photo))
- $col_size = 'col-md-6' ;
- else
- $col_size = 'col-md-12' ;
- ?>
-
- <section id="presentation">
- <?php if(strlen($producer->photo)): ?>
- <div class="photo <?= $col_size ?>">
- <img class="img-photo" src="<?= Yii::$app->urlManager->baseUrl; ?>/uploads/<?= $producer->photo; ?>" alt="Photo <?= Html::encode($producer->nom) ?>" />
- </div>
- <?php endif; ?>
- <?php if(strlen($producer->description)): ?>
- <div class="description <?= $col_size ?>">
- <?= nl2br(Html::encode($producer->description)); ?>
- </div>
- <?php endif; ?>
- <div class="clr"></div>
- </section>
- <?php endif; ?>
-
- <?php if(is_array($points_vente) && count($points_vente)): ?>
- <section id="points-vente">
- <h3><span>Points de vente</span></h3>
- <table class="table table-bordered">
- <thead>
- <tr>
- <th>Nom</th>
- <th>Localisation</th>
- <th>Jours de livraison</th>
- </tr>
- </thead>
- <tbody>
- <?php foreach($points_vente as $pv): ?>
- <tr>
- <td><?= Html::encode($pv->nom); ?></td>
- <td><?= Html::encode($pv->localite); ?></td>
- <td><?= Html::encode($pv->strJoursLivraison()); ?></td>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
- </section>
- <?php endif; ?>
|