|
|
@@ -57,218 +57,70 @@ use yii\helpers\ArrayHelper; |
|
|
|
</a> |
|
|
|
|
|
|
|
<div class="navbar-custom-menu"> |
|
|
|
|
|
|
|
<?php |
|
|
|
|
|
|
|
$usersArray = User::findBy(['id_producer' => Producer::getId()]) |
|
|
|
->andWhere('CAST(FROM_UNIXTIME(user.created_at) AS date) > \''.date("Y-m-d", strtotime("-7 days")).'\'') |
|
|
|
->orderBy('created_at DESC') |
|
|
|
->all(); |
|
|
|
|
|
|
|
?> |
|
|
|
|
|
|
|
<ul class="nav navbar-nav"> |
|
|
|
|
|
|
|
<!-- Messages: style can be found in dropdown.less--> |
|
|
|
<li class="dropdown messages-menu"> |
|
|
|
<li class="dropdown users-menu notifications-menu"> |
|
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> |
|
|
|
<i class="fa fa-envelope-o"></i> |
|
|
|
<span class="label label-success">4</span> |
|
|
|
<i class="fa fa-user-plus"></i> |
|
|
|
<?php if(count($usersArray)): ?><span class="label label-success"><?= count($usersArray) ?></span> |
|
|
|
<?php else: ?><span class="label label-warning">0</span><?php endif; ?> |
|
|
|
</a> |
|
|
|
<ul class="dropdown-menu"> |
|
|
|
<li class="header">You have 4 messages</li> |
|
|
|
<li class="header">Inscriptions des 7 derniers jours</li> |
|
|
|
<li> |
|
|
|
<!-- inner menu: contains the actual data --> |
|
|
|
<ul class="menu"> |
|
|
|
<li><!-- start message --> |
|
|
|
<a href="#"> |
|
|
|
<div class="pull-left"> |
|
|
|
<img src="<?= $directoryAsset ?>/img/user2-160x160.jpg" class="img-circle" |
|
|
|
alt="User Image"/> |
|
|
|
</div> |
|
|
|
<h4> |
|
|
|
Support Team |
|
|
|
<small><i class="fa fa-clock-o"></i> 5 mins</small> |
|
|
|
</h4> |
|
|
|
<p>Why not buy a new awesome theme?</p> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<!-- end message --> |
|
|
|
<li> |
|
|
|
<a href="#"> |
|
|
|
<div class="pull-left"> |
|
|
|
<img src="<?= $directoryAsset ?>/img/user3-128x128.jpg" class="img-circle" |
|
|
|
alt="user image"/> |
|
|
|
</div> |
|
|
|
<h4> |
|
|
|
AdminLTE Design Team |
|
|
|
<small><i class="fa fa-clock-o"></i> 2 hours</small> |
|
|
|
</h4> |
|
|
|
<p>Why not buy a new awesome theme?</p> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="#"> |
|
|
|
<div class="pull-left"> |
|
|
|
<img src="<?= $directoryAsset ?>/img/user4-128x128.jpg" class="img-circle" |
|
|
|
alt="user image"/> |
|
|
|
</div> |
|
|
|
<h4> |
|
|
|
Developers |
|
|
|
<small><i class="fa fa-clock-o"></i> Today</small> |
|
|
|
</h4> |
|
|
|
<p>Why not buy a new awesome theme?</p> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="#"> |
|
|
|
<div class="pull-left"> |
|
|
|
<img src="<?= $directoryAsset ?>/img/user3-128x128.jpg" class="img-circle" |
|
|
|
alt="user image"/> |
|
|
|
</div> |
|
|
|
<h4> |
|
|
|
Sales Department |
|
|
|
<small><i class="fa fa-clock-o"></i> Yesterday</small> |
|
|
|
</h4> |
|
|
|
<p>Why not buy a new awesome theme?</p> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<?php foreach($usersArray as $user): ?> |
|
|
|
<li> |
|
|
|
<a href="#"> |
|
|
|
<div class="pull-left"> |
|
|
|
<img src="<?= $directoryAsset ?>/img/user4-128x128.jpg" class="img-circle" |
|
|
|
alt="user image"/> |
|
|
|
</div> |
|
|
|
<h4> |
|
|
|
Reviewers |
|
|
|
<small><i class="fa fa-clock-o"></i> 2 days</small> |
|
|
|
</h4> |
|
|
|
<p>Why not buy a new awesome theme?</p> |
|
|
|
<a href="<?= Yii::$app->urlManagerBackend->createUrl(['user/update','id' => $user['user_id']]) ; ?>"> |
|
|
|
<h5><?= Html::encode($user['name'].' '.$user['lastname']) ; ?> <small><i class="fa fa-clock-o"></i> <?= date('d/m/Y à H:i',$user['created_at']); ?></small></h5> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<?php endforeach; ?> |
|
|
|
</ul> |
|
|
|
</li> |
|
|
|
<li class="footer"><a href="#">See All Messages</a></li> |
|
|
|
</ul> |
|
|
|
</li> |
|
|
|
<li class="dropdown notifications-menu"> |
|
|
|
|
|
|
|
<?php |
|
|
|
|
|
|
|
$usersNegativeCreditArray = User::findBy(['id_producer' => Producer::getId()]) |
|
|
|
->andWhere('user_producer.credit < 0') |
|
|
|
->orderBy('lastname, name ASC') |
|
|
|
->all(); |
|
|
|
|
|
|
|
?> |
|
|
|
|
|
|
|
<li class="dropdown users-negative-credit-menu notifications-menu"> |
|
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> |
|
|
|
<i class="fa fa-bell-o"></i> |
|
|
|
<span class="label label-warning">10</span> |
|
|
|
<i class="fa fa-euro"></i> |
|
|
|
<?php if(count($usersNegativeCreditArray)): ?><span class="label label-warning"><?= count($usersNegativeCreditArray) ?></span> |
|
|
|
<?php else: ?><span class="label label-success">0</span><?php endif; ?> |
|
|
|
</a> |
|
|
|
<ul class="dropdown-menu"> |
|
|
|
<li class="header">You have 10 notifications</li> |
|
|
|
<li class="header">Utilisateurs au crédit négatif</li> |
|
|
|
<li> |
|
|
|
<!-- inner menu: contains the actual data --> |
|
|
|
<ul class="menu"> |
|
|
|
<?php foreach($usersNegativeCreditArray as $user): ?> |
|
|
|
<li> |
|
|
|
<a href="#"> |
|
|
|
<i class="fa fa-users text-aqua"></i> 5 new members joined today |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="#"> |
|
|
|
<i class="fa fa-warning text-yellow"></i> Very long description here that may |
|
|
|
not fit into the page and may cause design problems |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="#"> |
|
|
|
<i class="fa fa-users text-red"></i> 5 new members joined |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
|
|
|
|
<li> |
|
|
|
<a href="#"> |
|
|
|
<i class="fa fa-shopping-cart text-green"></i> 25 sales made |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="#"> |
|
|
|
<i class="fa fa-user text-red"></i> You changed your username |
|
|
|
<a href="<?= Yii::$app->urlManagerBackend->createUrl(['user/credit','id' => $user['user_id']]) ; ?>"> |
|
|
|
<h5><?= Html::encode($user['name'].' '.$user['lastname']) ; ?> <small><i class="fa fa-euro"></i> <?= Price::format($user['credit']); ?></small></h5> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<?php endforeach; ?> |
|
|
|
</ul> |
|
|
|
</li> |
|
|
|
<li class="footer"><a href="#">View all</a></li> |
|
|
|
</ul> |
|
|
|
</li> |
|
|
|
<!-- Tasks: style can be found in dropdown.less --> |
|
|
|
<li class="dropdown tasks-menu"> |
|
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> |
|
|
|
<i class="fa fa-flag-o"></i> |
|
|
|
<span class="label label-danger">9</span> |
|
|
|
</a> |
|
|
|
<ul class="dropdown-menu"> |
|
|
|
<li class="header">You have 9 tasks</li> |
|
|
|
<li> |
|
|
|
<!-- inner menu: contains the actual data --> |
|
|
|
<ul class="menu"> |
|
|
|
<li><!-- Task item --> |
|
|
|
<a href="#"> |
|
|
|
<h3> |
|
|
|
Design some buttons |
|
|
|
<small class="pull-right">20%</small> |
|
|
|
</h3> |
|
|
|
<div class="progress xs"> |
|
|
|
<div class="progress-bar progress-bar-aqua" style="width: 20%" |
|
|
|
role="progressbar" aria-valuenow="20" aria-valuemin="0" |
|
|
|
aria-valuemax="100"> |
|
|
|
<span class="sr-only">20% Complete</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<!-- end task item --> |
|
|
|
<li><!-- Task item --> |
|
|
|
<a href="#"> |
|
|
|
<h3> |
|
|
|
Create a nice theme |
|
|
|
<small class="pull-right">40%</small> |
|
|
|
</h3> |
|
|
|
<div class="progress xs"> |
|
|
|
<div class="progress-bar progress-bar-green" style="width: 40%" |
|
|
|
role="progressbar" aria-valuenow="20" aria-valuemin="0" |
|
|
|
aria-valuemax="100"> |
|
|
|
<span class="sr-only">40% Complete</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<!-- end task item --> |
|
|
|
<li><!-- Task item --> |
|
|
|
<a href="#"> |
|
|
|
<h3> |
|
|
|
Some task I need to do |
|
|
|
<small class="pull-right">60%</small> |
|
|
|
</h3> |
|
|
|
<div class="progress xs"> |
|
|
|
<div class="progress-bar progress-bar-red" style="width: 60%" |
|
|
|
role="progressbar" aria-valuenow="20" aria-valuemin="0" |
|
|
|
aria-valuemax="100"> |
|
|
|
<span class="sr-only">60% Complete</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<!-- end task item --> |
|
|
|
<li><!-- Task item --> |
|
|
|
<a href="#"> |
|
|
|
<h3> |
|
|
|
Make beautiful transitions |
|
|
|
<small class="pull-right">80%</small> |
|
|
|
</h3> |
|
|
|
<div class="progress xs"> |
|
|
|
<div class="progress-bar progress-bar-yellow" style="width: 80%" |
|
|
|
role="progressbar" aria-valuenow="20" aria-valuemin="0" |
|
|
|
aria-valuemax="100"> |
|
|
|
<span class="sr-only">80% Complete</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<!-- end task item --> |
|
|
|
</ul> |
|
|
|
</li> |
|
|
|
<li class="footer"> |
|
|
|
<a href="#">View all tasks</a> |
|
|
|
</li> |
|
|
|
</ul> |
|
|
|
</li> |
|
|
|
|
|
|
|
<?php if (User::isCurrentProducer() || User::isCurrentAdmin()): ?> |
|
|
|
|
|
|
|
<li class="dropdown"> |
|
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> |
|
|
|
<i class="fa fa-home"></i> |