/** * Lists all PaidEmployment models. * @return mixed */ public function actionIndex() { $groupsArray = ArrayHelper::map(Group::find()->asArray()->select('id, name')->orderBy('name')->all(), 'id', 'name'); $searchModel = new EmploymentSearch(); $dataProvider = $searchModel->search(Yii::$app->request->queryParams); if (!empty($searchModel->userFullName)) { $filterUserDataArray = [$searchModel->userFullName => \common\models\Profile::getFullNameByUserId($searchModel->userFullName)]; } else { $filterUserDataArray = []; } return $this->render('index', compact(['searchModel', 'dataProvider', 'groupsArray', 'filterUserDataArray'])); }
/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Group::find(); $dataProvider = new ActiveDataProvider(['query' => $query]); $this->load($params); if (!$this->validate()) { // uncomment the following line if you do not want to any records when validation fails // $query->where('0=1'); return $dataProvider; } $query->andFilterWhere(['id' => $this->id, 'status' => $this->status]); $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'description', $this->description]); return $dataProvider; }
/** * Finds the Group model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return Group the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModelAll($id) { if (($model = Group::find()->where(['id' => $id])->all()) !== null) { return $model; } else { throw new HttpException(404); } }