Ejemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = EfGroupRole::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(['GROUP_ROLE_ID' => $this->GROUP_ROLE_ID, 'GROUP_ID' => $this->GROUP_ID, 'MENU_SUB_ID' => $this->MENU_SUB_ID, 'CREATE_BY' => $this->CREATE_BY, 'CREATE_DATE' => $this->CREATE_DATE, 'LAST_UPD_BY' => $this->LAST_UPD_BY, 'LAST_UPD_DATE' => $this->LAST_UPD_DATE]);
     $query->andFilterWhere(['like', 'ACCESS_FLAG', $this->ACCESS_FLAG])->andFilterWhere(['like', 'ADD_FLAG', $this->ADD_FLAG])->andFilterWhere(['like', 'EDIT_FLAG', $this->EDIT_FLAG])->andFilterWhere(['like', 'DELETE_FLAG', $this->DELETE_FLAG]);
     return $dataProvider;
 }
Ejemplo n.º 2
0
 /**
  * Finds the EfGroupRole model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return EfGroupRole the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = EfGroupRole::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Ejemplo n.º 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getEfGroupRoles()
 {
     return $this->hasMany(EfGroupRole::className(), ['MENU_SUB_ID' => 'MENU_SUB_ID']);
 }