/** * Returns the data model based on the primary key given in the GET variable. * If the data model is not found, an HTTP exception will be raised. * @param integer $id the ID of the model to be loaded * @return Classmanager the loaded model * @throws CHttpException */ public function loadModel($id) { $model = Classmanager::model()->findByPk($id); if ($model === null) { throw new CHttpException(404, 'The requested page does not exist.'); } return $model; }
?> <div class="form"> <?php $form = $this->beginWidget('CActiveForm', array('id' => 'class-subject-form', 'enableAjaxValidation' => false, 'htmlOptions' => array('class' => 'form'))); ?> <p class="text-danger note-required">Trường có dấu <span class="required">*</span> là bắt buộc.</p> <div class="form-group"> <?php echo $form->labelEx($model, 'ID_Class:', array('class' => 'control-label')); ?> <?php echo $form->dropdownList($model, 'ID_Class', Classmanager::getClassOptions(), array('class' => 'form-control')); ?> <?php echo $form->error($model, 'ID_Class', array('class' => 'text-danger')); ?> </div> <div class="form-group"> <?php echo $form->labelEx($model, 'ID_Room:', array('class' => 'control-label')); ?> <?php echo $form->dropdownList($model, 'ID_Room', Room::getRoomOptions(), array('class' => 'form-control')); ?> <?php echo $form->error($model, 'ID_Room', array('class' => 'text-danger'));
public static function getClassOptionsByFacutyId($id) { return CHtml::listData(Classmanager::model()->findAll('Facuty_id=:Facuty_id', array('Facuty_id' => $id)), 'ID', 'Name'); }
public static function getClassOptionsByFacutyId($id) { $Data = array(0 => 'Chọn lớp học'); $listData = CHtml::listData(Classmanager::model()->findAll('Facuty_id=:Facuty_id', array('Facuty_id' => $id)), 'ID', 'Name'); foreach ($listData as $key => $value) { $Data[$key] = $value; } return $Data; }