コード例 #1
0
 public function actionPessoas()
 {
     $query = Pessoas::find();
     $pagination = new Pagination(['defaultPageSize' => 3, 'totalCount' => $query->count()]);
     $pessoas = $query->orderBy('nome')->offset($pagination->offset)->limit($pagination->limit)->all();
     return $this->render('pessoas', ['pessoas' => $pessoas, 'pagination' => $pagination]);
 }
コード例 #2
0
ファイル: PessoasSearch.php プロジェクト: nazati/yii2-videos
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Pessoas::find();
     $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->andFilterWhere(['id' => $this->id]);
     $query->andFilterWhere(['like', 'nome', $this->nome])->andFilterWhere(['like', 'email', $this->email])->andFilterWhere(['like', 'cidade', $this->cidade])->andFilterWhere(['like', 'estado', $this->estado]);
     return $dataProvider;
 }
コード例 #3
0
 /**
  * Finds the Pessoas model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Pessoas the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Pessoas::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }