Esempio n. 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Mesaj::find();
     // add conditions that should always apply here
     $query->joinWith(['alici']);
     $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;
     }
     $dataProvider->sort->attributes['_alici'] = ['asc' => ['user.username' => SORT_ASC], 'desc' => ['user.username' => SORT_DESC]];
     $dataProvider->sort->attributes['_gonderen'] = ['asc' => ['user.username' => SORT_ASC], 'desc' => ['user.username' => SORT_DESC]];
     // grid filtering conditions
     $query->andFilterWhere(['id' => $this->id, 'gonderen_id' => $this->gonderen_id, 'alici_id' => $this->alici_id, 'tarih' => $this->tarih]);
     $query->andFilterWhere(['like', 'icerik', $this->icerik]);
     $query->andFilterWhere(['like', 'user.username', $this->_alici]);
     $query->andFilterWhere(['like', 'user.username', $this->_gonderen]);
     return $dataProvider;
 }
Esempio n. 2
0
 /**
  * Finds the Mesaj model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Mesaj the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Mesaj::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }