|
- <?php
-
-
-
- use yii\helpers\Html ;
-
- $this->setTitle('Liste des emails') ;
- $this->addBreadcrumb(['label' => 'Utilisateurs', 'url' => ['user/index']]) ;
- $this->addBreadcrumb($this->getTitle()) ;
-
- ?>
-
- <h3><?= count($usersArray); ?> utilisateurs</h3>
- <ul id="tabs-points-sale" class="nav nav-tabs" role="tablist">
- <li class="<?php if(!isset($pointSale)): ?>active<?php endif; ?>">
- <a href="<?= Yii::$app->urlManager->createUrl(['user/mail']); ?>">Tous</a>
- </li>
- <?php foreach($pointsSaleArray as $thePointSale): ?>
- <li class="<?php if(isset($pointSale) && $pointSale->id == $thePointSale->id): ?>active<?php endif; ?>">
- <a href="<?= Yii::$app->urlManager->createUrl(['user/mail','idPointSale'=>$thePointSale->id]); ?>"><?= Html::encode($thePointSale->name) ?></a>
- </li>
- <?php endforeach; ?>
- </ul>
-
- <?= implode(', ', $usersArray); ?>
|