id | ... | ... | ripeness_group <-- тут integer значения хранятся виде 180, 200 или 300, 500
id =>
...
ripeness_group => 180
---
id =>
...
ripeness_group => 200
и так далее
<?php
namespace common\models;
use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use yii\data\Sort;
use yii\helpers\VarDumper;
/**
* ProductSeedsSearch represents the model behind the search form about `common\models\ProductSeeds`.
*/
class ProductSeedsSearch extends ProductSeeds
{
public $sort;
public $category_title;
/**
* @inheritdoc
*/
public function rules()
{
return [
[['id', 'status', 'new', 'hit', 'sale', 'stock', 'top_sales', 'top_ten', 'category_id', 'quantity', 'img_id', 'gallery_id', 'brand_id', 'ripeness_group', 'country_id', 'rateNum', 'availability', 'created_at', 'updated_at'], 'integer'],
[['title', 'content', 'vendor_code', 'seo_keywords', 'seo_description', 'category_title', 'sort'], 'safe'],
//[['old_price', 'price'], 'number'],
];
}
/**
* @inheritdoc
*/
public function scenarios()
{
// bypass scenarios() implementation in the parent class
return Model::scenarios();
}
/**
* Creates data provider instance with search query applied
*
* @param array $params
*
* @return ActiveDataProvider
*/
public function search($params)
{
// $query = ProductSeeds::find();
// add conditions that should always apply here
$id = Yii::$app->request->get('id');
$query = ProductSeeds::find()->joinWith('category')->where(['category_id' => $id]);
$dataProvider = new ActiveDataProvider([
'query' => $query,
'pagination' => [
'pageSize' => 10,
],
]);
$this->load($params);
if (!$this->validate()) {
return $dataProvider;
}
// grid filtering conditions
$query->andFilterWhere([
'brand_id' => $this->brand_id,
'country_id' => $this->country_id,
'ripeness_group' => $this->ripeness_group,
]);
$query->andFilterWhere([
'and',
['>=', 'price', Yii::$app->request->get('min_zena')],
['<=', 'price', Yii::$app->request->get('max_zena')]
]);
// if ($this->price) {
// $range = explode(',', $this->price);
//
// $query->andFilterWhere([
// 'and',
// ['>=', 'price', $range[0]],
// ['<=', 'price', $range[1]]
// ]);
// }
return $dataProvider;
}
}
<?php
namespace common\models;
use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use yii\data\Sort;
use yii\helpers\VarDumper;
/**
* ProductSeedsSearch represents the model behind the search form about `common\models\ProductSeeds`.
*/
class ProductSeedsSearch extends ProductSeeds
{
public $sort;
public $category_title;
/**
* @inheritdoc
*/
public function rules()
{
return [
[['id', 'status', 'new', 'hit', 'sale', 'stock', 'top_sales', 'top_ten', 'category_id', 'quantity', 'img_id', 'gallery_id', 'brand_id', 'ripeness_group', 'country_id', 'rateNum', 'availability', 'created_at', 'updated_at'], 'integer'],
[['title', 'content', 'vendor_code', 'seo_keywords', 'seo_description', 'category_title', 'sort'], 'safe'],
//[['old_price', 'price'], 'number'],
];
}
/**
* @inheritdoc
*/
public function scenarios()
{
// bypass scenarios() implementation in the parent class
return Model::scenarios();
}
/**
* Creates data provider instance with search query applied
*
* @param array $params
*
* @return ActiveDataProvider
*/
public function search($params)
{
// $query = ProductSeeds::find();
// add conditions that should always apply here
$id = Yii::$app->request->get('id');
$query = ProductSeeds::find()->joinWith('category')->where(['category_id' => $id]);
$dataProvider = new ActiveDataProvider([
'query' => $query,
'pagination' => [
'pageSize' => 10,
],
]);
$this->load($params);
if (!$this->validate()) {
return $dataProvider;
}
// grid filtering conditions
$query->andFilterWhere([
'brand_id' => $this->brand_id,
'country_id' => $this->country_id,
'ripeness_group' => $this->ripeness_group,
]);
$query->andFilterWhere([
'and',
['>=', 'price', Yii::$app->request->get('min_zena')],
['<=', 'price', Yii::$app->request->get('max_zena')]
]);
// if ($this->price) {
// $range = explode(',', $this->price);
//
// $query->andFilterWhere([
// 'and',
// ['>=', 'price', $range[0]],
// ['<=', 'price', $range[1]]
// ]);
// }
return $dataProvider;
}
}
$int = explode('-',$this->ripeness_group);
$query->andFilterWhere([
'and',
['>', 'ripeness_group', $int[0]],
['<', 'ripeness_group', $int[1]]
]);
<p>Группа спелости (ФАО)</p>
<div class="select-block">
<div class="checkbox">
<label>
<input type="checkbox" id="productseedssearch-ripeness_group"
name="ProductSeedsSearch[ripeness_group]" value="1">
<span class="checkbox-custom"></span>
180-210
<span class="quantity"></span>
</label>
</div>
<?= Html::submitButton(Yii::t('app', 'OK')) ?>
</div>
public static function getFilterRipenessGroupCheckbox($id)
{
$query = new Query();
$query->select('ripeness_group')
->from('product_seeds')
->where(['category_id' => $id])
->groupBy('ripeness_group');
$command = $query->createCommand();
$data = $command->queryAll();
$result = [];
foreach ($data as $ripenessGroup) {
$result[] = $ripenessGroup['ripeness_group'];
}
return $result;
}
<p>Группа спелости (ФАО)</p>
<div class="select-block">
<?php
foreach ($ripenessGroups as $key => $value) : ?>
<?php if (!$value == null) : ?>
<?php
$checked_ripeness_group = "";
if (isset($_GET['ProductSeedsSearch']['ripeness_group'])) {
$brand = $_GET['ProductSeedsSearch']['ripeness_group'];
if ($value == $brand) {
$checked_ripeness_group = "checked";
}
}
?>
<div class="checkbox">
<label>
<input type="checkbox" id="productseedssearch-ripeness_group"
name="ProductSeedsSearch[ripeness_group]" value="<?= $value ?>"
<?= $checked_ripeness_group ?>>
<span class="checkbox-custom"></span>
<?= $value ?>
<span class="quantity"></span>
</label>
</div>
<?php $form->field($model, 'ripeness_group')->checkbox(
[
'uncheck' => null,
'label' => $value,
'value' => $value,
]
); ?>
<?php endif; ?>
<?php endforeach; ?>
<?= Html::submitButton(Yii::t('app', 'OK')) ?>
</div>
if (isset($_GET['ProductSeedsSearch']['ripeness_group'])) {
$int = $_GET['ProductSeedsSearch']['ripeness_group'];
$int = explode('-',$this->ripeness_group);
$query->andFilterWhere([
'and',
['>=', 'ripeness_group', $int[0]],
['<=', 'ripeness_group', $int[1]]
]);
}
$a = '180-210';
$b = '220-260';
$c = '270-300';
$d = '300 и больше';
<p>Группа спелости (ФАО)</p>
<div class="select-block">
<div class="checkbox">
<label>
<input type="checkbox" id="productseedssearch-ripeness_group"
name="ProductSeedsSearch[ripeness_group]" value="<?= $a ?>">
<span class="checkbox-custom"></span>
180-210
<span class="quantity"></span>
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="productseedssearch-ripeness_group"
name="ProductSeedsSearch[ripeness_group]" value="<?= $b ?>">
<span class="checkbox-custom"></span>
220-260
<span class="quantity"></span>
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="productseedssearch-ripeness_group"
name="ProductSeedsSearch[ripeness_group]" value="<?= $c ?>">
<span class="checkbox-custom"></span>
270-300
<span class="quantity"></span>
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="productseedssearch-ripeness_group"
name="ProductSeedsSearch[ripeness_group]" value="<?= $d ?>">
<span class="checkbox-custom"></span>
300 и больше
<span class="quantity"></span>
</label>
</div>
<?= Html::submitButton(Yii::t('app', 'OK')) ?>
</div>
$min = ($int[0] == 180)?0:$int[0];
$max = (isset($int[1]))??100000000;
$query->andFilterWhere([
'and',
['>=', 'ripeness_group', $min],
['<=', 'ripeness_group', $max]
]);
syntax error, unexpected '?'
$max = (isset($int[1])) ??100000000; объясните мне этот участок кода?
$max = (isset($int[1])) ?isset($int[1]):100000000;
// if (!$this->validate()) {
// return $dataProvider;
// }
'270-300'
VarDumper::dump($_GET['ProductSeedsSearch']['ripeness_group'], 11, 1);
if (isset($_GET['ProductSeedsSearch']['ripeness_group'])) {
$int = $_GET['ProductSeedsSearch']['ripeness_group'];
$int = explode('-', $this->ripeness_group);
$min = ($int[0] == 180) ? 0 : $int[0];
$max = (isset($int[1])) ? isset($int[1]) : 100000000;
$query->andFilterWhere([
'and',
['>=', 'ripeness_group', $min],
['<=', 'ripeness_group', $max]
]);
}
$a = '0-210';
<div class="checkbox">
<label>
<input type="checkbox" id="productseedssearch-ripeness_group"
name="ProductSeedsSearch[ripeness_group]" value="<?= $a ?>">
<span class="checkbox-custom"></span>
180-210
<span class="quantity"></span>
</label>
</div>
куда мне смотреть?