Exemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Karyawan::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, 'IdBio' => $this->IdBio, 'IdJabDept' => $this->IdJabDept, 'auth_key' => $this->auth_key, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, 'TglMasuk' => $this->TglMasuk, 'TglKeluar' => $this->TglKeluar]);
     $query->andFilterWhere(['like', 'Nip', $this->Nip])->andFilterWhere(['like', 'username', $this->username])->andFilterWhere(['like', 'password_hash', $this->password_hash])->andFilterWhere(['like', 'password_reset_token', $this->password_reset_token])->andFilterWhere(['like', 'role', $this->role])->andFilterWhere(['like', 'status', $this->status])->andFilterWhere(['like', 'RStat', $this->RStat])->andFilterWhere(['like', 'tipe', $this->tipe])->andFilterWhere(['like', 'Aktif', $this->Aktif]);
     return $dataProvider;
 }
Exemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdKaryawan()
 {
     return $this->hasOne(Karyawan::className(), ['id' => 'IdKaryawan']);
 }
Exemplo n.º 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getKaryawans()
 {
     return $this->hasMany(Karyawan::className(), ['IdBio' => 'id']);
 }
Exemplo n.º 4
0
 /**
  * Finds the Karyawan model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Karyawan the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Karyawan::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }