Exemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Suppliersbrands::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['SuppliersBrandId' => $this->SuppliersBrandId, 'BrandId' => $this->BrandId, 'SupplierId' => $this->SupplierId, 'created_by' => $this->created_by, 'LastUpdatedBy' => $this->LastUpdatedBy, 'created_at' => $this->created_at, 'deleted_at' => $this->deleted_at]);
     $query->andFilterWhere(['like', 'Comment', $this->Comment])->andFilterWhere(['like', 'updated_at', $this->updated_at]);
     return $dataProvider;
 }
 /**
  * Finds the Suppliersbrands model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Suppliersbrands the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Suppliersbrands::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Exemplo n.º 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getSuppliersbrands()
 {
     return $this->hasMany(Suppliersbrands::className(), ['SupplierId' => 'SupplierId']);
 }