/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Titles::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; } $query->joinWith('tag'); // grid filtering conditions $query->andFilterWhere(['id' => $this->id, 'user_id' => $this->user_id]); $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'tags.name', $this->tag_id]); return $dataProvider; }
/* @var $this yii\web\View */ /* @var $model backend\modules\sozluk\models\Messages */ /* @var $form yii\widgets\ActiveForm */ ?> <div class="messages-form"> <?php $form = ActiveForm::begin(); ?> <?php echo $form->field($model, 'title_id')->dropDownList(ArrayHelper::map(Titles::find()->all(), 'id', 'name'), ['prompt' => 'Bir başlık seçiniz...']); ?> <?php echo $form->field($model, 'message')->textarea(['rows' => 6]); ?> <div class="form-group"> <?php echo Html::submitButton($model->isNewRecord ? 'Oluştur' : 'Güncelle', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']); ?> </div> <?php ActiveForm::end(); ?>
/** * Finds the Titles model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return Titles the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = Titles::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }