Пример #1
0
 public function run()
 {
     $params = ['is_filter' => 'yes'];
     if ($this->filterId) {
         $params['id'] = $this->filterId;
     }
     $filters = Filter::find()->orderBy('sort DESC')->andWhere($params)->all();
     $return = [];
     foreach ($filters as $filter) {
         if (in_array($this->itemId, $filter->selected)) {
             $block = '';
             $title = Html::tag('p', $filter->name, ['class' => 'heading']);
             if ($this->findModel) {
                 $variants = $filter->getVariantsByFindModel($this->findModel)->all();
             } else {
                 $variants = $filter->variants;
             }
             if ($filter->type == 'range') {
                 $max = 0;
                 $min = 0;
                 foreach ($variants as $variant) {
                     if ($max < $variant->numeric_value) {
                         $max = $variant->numeric_value;
                     }
                     if ($min > $variant->numeric_value) {
                         $min = $variant->numeric_value;
                     }
                 }
                 $fieldName = $this->fieldName . '[' . $filter->id . ']';
                 $from = $min;
                 $to = $max;
                 $value = yii::$app->request->get($this->fieldName)[$filter->id];
                 if ($value) {
                     $values = explode(';', $value);
                     $from = $values[0];
                     $to = $values[1];
                 }
                 if (!empty($variants)) {
                     $step = round($max / count($variants));
                 } else {
                     $step = 1;
                 }
                 $block = IonSlider::widget(['name' => $fieldName, 'value' => $value, 'type' => "double", 'pluginOptions' => ['drag_interval' => true, 'grid' => true, 'min' => $min, 'max' => $max, 'from' => $from, 'to' => $to, 'step' => $step]]);
             } elseif ($filter->type == 'select') {
                 $fieldName = $this->fieldName . '[' . $filter->id . ']';
                 $value = yii::$app->request->get($this->fieldName)[$filter->id];
                 $variantsListWithNull = ['' => '-'];
                 $variantsList = ArrayHelper::map($variants, 'id', 'value');
                 foreach ($variantsList as $id => $value) {
                     $variantsListWithNull[$id] = $value;
                 }
                 $block = Html::dropDownList($fieldName, $value, $variantsListWithNull, ['class' => 'form-control']);
             } else {
                 foreach ($variants as $variant) {
                     $checked = false;
                     if ($filterData = yii::$app->request->get('filter')) {
                         if (isset($filterData[$filter->id]) && isset($filterData[$filter->id][$variant->id]) | $filterData[$filter->id] == $variant->id) {
                             $checked = true;
                         }
                     }
                     if (!in_array($filter->type, array('radio', 'checkbox', 'range'))) {
                         $filter->type = 'checkbox';
                     }
                     if ($filter->type == 'radio') {
                         $fieldName = $this->fieldName . '[' . $filter->id . ']';
                     } else {
                         $fieldName = $this->fieldName . '[' . $filter->id . '][' . $variant->id . ']';
                     }
                     $field = Html::input($filter->type, $fieldName, $variant->id, ['checked' => $checked, 'data-item-css-class' => $this->itemCssClass, 'id' => "variant{$variant->id}"]);
                     $field .= Html::label($variant->value, "variant{$variant->id}");
                     $block .= Html::tag('div', $field);
                 }
             }
             if (!empty($variants)) {
                 $return[] = Html::tag('div', $title . $block, ['class' => $this->blockCssClass]);
             }
         }
     }
     if ($return) {
         $return[] = Html::input('submit', '', $this->submitButtonValue, ['class' => 'btn btn-submit']);
         return Html::tag('form', implode('', $return), ['data-resulthtmlselector' => $this->resultHtmlSelector, 'name' => 'pistol88-filter', 'action' => '', 'class' => 'pistol88-filter']);
     }
     return null;
 }
Пример #2
0
                <div class="row margin">
                    <div class="col-sm-6">
                        <?php 
echo IonSlider::widget(['name' => "range_5", 'type' => 'single', 'pluginOptions' => ['min' => 0, 'max' => 10, 'step' => 0.1, 'postfix' => " mm", 'prettify' => false, 'grid' => true]]);
?>
                    </div>
                    <div class="col-sm-6">
                        <?php 
echo IonSlider::widget(['name' => "range_6", 'type' => 'single', 'pluginOptions' => ['min' => -50, 'max' => 50, 'step' => 1, 'from' => 0, 'postfix' => "°", 'prettify' => false, 'grid' => true]]);
?>
                    </div>
                </div>
                <div class="row margin">
                    <div class="col-sm-12">
                        <?php 
echo IonSlider::widget(['name' => "range_4", 'type' => 'single', 'pluginOptions' => ['min' => 10000, 'max' => 100000, 'postfix' => " light years", 'from' => 55000, 'hide_min_max' => true, 'hide_from_to' => false]]);
?>
                    </div>
                </div>
        <?php 
echo app\widgets\Box::end();
?>
    </div><!-- /.col -->
</div><!-- /.row -->

<div class="row">
    <div class="col-xs-12">
        <?php 
echo Box::begin(['type' => 'primary', 'header' => ['title' => 'Bootstrap Slider']]);
?>
                <div class="row margin">