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.
37 lines
972 B
37 lines
972 B
<?php |
|
|
|
use yii\helpers\Html; |
|
use backend\helpers\DashboardHelper; |
|
|
|
/** |
|
* @var $this \yii\web\View |
|
* @var $wl array |
|
*/ |
|
|
|
list($widgetsCounter, $widgetsInfo) = DashboardHelper::getAllWidgets(); |
|
?> |
|
|
|
<div class="row"> |
|
<div class="col-md-6"> |
|
<h4><?= Yii::t('main', 'Counters widgets') ?></h4> |
|
|
|
<div style="margin-bottom:15px;"> |
|
<?= Html::dropDownList('colorCounter', 'blue', DashboardHelper::getExtColors(), [ |
|
'id' => 'colorCounter', |
|
'class' => 'form-control', |
|
]) ?> |
|
</div> |
|
<?= $widgetsCounter ?> |
|
</div> |
|
<div class="col-md-6"> |
|
<h4><?= Yii::t('main', 'Info widgets') ?></h4> |
|
<div style="margin-bottom:15px;"> |
|
<?= Html::dropDownList('colorInfo', 'primary', DashboardHelper::getColors(), [ |
|
'id' => 'colorInfo', |
|
'class' => 'form-control', |
|
]) ?> |
|
</div> |
|
<?= $widgetsInfo ?> |
|
</div> |
|
</div> |
|
|
|
|