Ejemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Mdlpermission::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, 'USER_ID' => $this->USER_ID, 'MODUL_ID' => $this->MODUL_ID, 'STATUS' => $this->STATUS, 'BTN_CREATE' => $this->BTN_CREATE, 'BTN_EDIT' => $this->BTN_EDIT, 'BTN_DELETE' => $this->BTN_DELETE, 'BTN_VIEW' => $this->BTN_VIEW, 'BTN_PROCESS1' => $this->BTN_PROCESS1, 'BTN_PROCESS2' => $this->BTN_PROCESS2, 'BTN_PROCESS3' => $this->BTN_PROCESS3, 'BTN_PROCESS4' => $this->BTN_PROCESS4, 'BTN_PROCESS5' => $this->BTN_PROCESS5, 'BTN_SIGN1' => $this->BTN_SIGN1, 'BTN_SIGN2' => $this->BTN_SIGN2, 'BTN_SIGN3' => $this->BTN_SIGN3, 'BTN_SIGN5' => $this->BTN_SIGN5, 'CREATED_BY' => $this->CREATED_BY, 'UPDATED_BY' => $this->UPDATED_BY, 'UPDATED_TIME' => $this->UPDATED_TIME]);
     return $dataProvider;
 }
Ejemplo n.º 2
0
 /**
  * Finds the Mdlpermission model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return Mdlpermission the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Mdlpermission::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Ejemplo n.º 3
0
 public function getMdlpermission()
 {
     return $this->hasMany(Mdlpermission::className(), ['USER_ID' => 'id']);
 }