예제 #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Personel::find();
     // add conditions that should always apply here
     $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;
     }
     // grid filtering conditions
     $query->andFilterWhere(['ID' => $this->ID, 'birimID' => $this->birimID, 'giris_tarihi' => $this->giris_tarihi, 'user_id' => $this->user_id]);
     $query->andFilterWhere(['like', 'ad_soyad', $this->ad_soyad])->andFilterWhere(['like', 'unvan', $this->unvan]);
     return $dataProvider;
 }
예제 #2
0
 public function actionFormizin()
 {
     if (!yii::$app->user->can('yonetici-form-izin')) {
         throw new UnauthorizedHttpException();
     }
     $model = new Formizin();
     if ($model->load(Yii::$app->request->post())) {
         $personel = Personel::findOne(['user_id' => yii::$app->user->id]);
         $model->personel_id = $personel->ID;
         if ($model->save()) {
             return $this->redirect(['index']);
         }
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
예제 #3
0
파일: Formizin.php 프로젝트: demirdaga/izin
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPersonel()
 {
     return $this->hasOne(Personel::className(), ['ID' => 'personel_id']);
 }
예제 #4
0
파일: User.php 프로젝트: demirdaga/izin
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPersonels()
 {
     return $this->hasMany(Personel::className(), ['user_id' => 'id']);
 }
예제 #5
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPersonels()
 {
     return $this->hasMany(Personel::className(), ['birimID' => 'DepID']);
 }
예제 #6
0
 /**
  * Finds the Personel model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Personel the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Personel::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }