Exemplo n.º 1
0
 public static function getClassOptionsByFacutyId($id)
 {
     return CHtml::listData(Classmanager::model()->findAll('Facuty_id=:Facuty_id', array('Facuty_id' => $id)), 'ID', 'Name');
 }
Exemplo n.º 2
0
 /**
  * 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;
 }
Exemplo n.º 3
0
 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;
 }