Exemple #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Grupo::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(['idGrupo' => $this->idGrupo, 'idDocente' => $this->idDocente, 'idAsignatura' => $this->idAsignatura, 'idPlan' => $this->idPlan]);
     return $dataProvider;
 }
Exemple #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getGrupos()
 {
     return $this->hasMany(Grupo::className(), ['idDocente' => 'idDocente']);
 }
Exemple #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdGrupo0()
 {
     return $this->hasOne(Grupo::className(), ['idGrupo' => 'idGrupo']);
 }
Exemple #4
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getGrupos()
 {
     return $this->hasMany(Grupo::className(), ['idAsignatura' => 'idAsignatura']);
 }
Exemple #5
0
                              <button type="button" class="remove-item btn btn-danger btn-xs"><i class="glyphicon glyphicon-minus"></i></button>
                          </div>
                          <div class="clearfix"></div>
                      </div>
                      <div class="panel-body">
                          <?php 
    // necessary for update action.
    if (!$modeldetallemat->isNewRecord) {
        echo Html::activeHiddenInput($modeldetallemat, "[{$i}]id");
    }
    ?>
                          <div class="row">
                              <div class="col-sm-6">

                                <?php 
    echo $form->field($modeldetallemat, "[{$i}]idGrupo")->dropDownList(ArrayHelper::map(Grupo::find()->all(), 'idGrupo', 'idAsignatura'), ['prompt' => 'Selecciona grupo']);
    ?>

                                <?php 
    echo $form->field($modeldetallemat, "[{$i}]idTipoa")->dropDownList(ArrayHelper::map(TipoAp::find()->all(), 'idTipoa', 'descripcion'), ['prompt' => 'Tipo de aprobación']);
    ?>

                                <?php 
    echo $form->field($modeldetallemat, "[{$i}]nota")->textInput(['maxlength' => true]);
    ?>

                              </div>
                          </div>
                      </div>
                  </div>
              <?php 
Exemple #6
0
 /**
  * Finds the Grupo model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Grupo the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Grupo::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }