create project

This commit is contained in:
2024-04-24 18:02:58 +03:00
commit 17df2ce6a9
276 changed files with 15932 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<?php
namespace frontend\modules\product\models;
class Product extends \common\models\Product
{
}

View File

@ -0,0 +1,73 @@
<?php
namespace frontend\modules\product\models;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use frontend\modules\product\models\Product;
/**
* ProductSearch represents the model behind the search form of `frontend\modules\product\models\Product`.
*/
class ProductSearch extends Product
{
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['id', 'company_id', 'type', 'price', 'status'], 'integer'],
[['title', 'article'], 'safe'],
];
}
/**
* {@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 = Product::find();
// add conditions that should always apply here
$dataProvider = new ActiveDataProvider([
'query' => $query,
]);
$this->load($params);
if (!$this->validate()) {
// uncomment the following line if you do not want to return any records when validation fails
// $query->where('0=1');
return $dataProvider;
}
// grid filtering conditions
$query->andFilterWhere([
'id' => $this->id,
'company_id' => $this->company_id,
'type' => $this->type,
'price' => $this->price,
'status' => $this->status,
]);
$query->andFilterWhere(['like', 'title', $this->title])
->andFilterWhere(['like', 'article', $this->article]);
return $dataProvider;
}
}