Example #1
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 Cpu the loaded model
  * @throws CHttpException
  */
 public function loadModel($id)
 {
     $model = Cpu::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }
Example #2
0
                    <div class="col-md-6">
                        <?php 
        echo $form->textFieldGroup($migracion, 'ram_despues', array('wrapperHtmlOptions' => array('class' => 'col-sm-5')));
        ?>
                    </div>

                    <div class="col-md-6">
                        <?php 
        echo $form->textFieldGroup($migracion, 'disco_despues', array('wrapperHtmlOptions' => array('class' => 'col-sm-5')));
        ?>
                    </div>


                    <div class="col-md-6">
                        <?php 
        echo $form->dropDownListGroup($migracion, 'cpu_id_despues', array('wrapperHtmlOptions' => array('class' => 'col-sm-5'), 'widgetOptions' => array('data' => CHtml::listData(Cpu::model()->findAll(), 'id', 'procesador', 'marca'), 'htmlOptions' => array('prompt' => 'Seleccione Cpu'))));
        ?>
                    </div>

                    <div class="col-md-6">
                        <?php 
        echo $form->dropDownListGroup($migracion, 'monitor_id_despues', array('wrapperHtmlOptions' => array('class' => 'col-sm-5'), 'widgetOptions' => array('data' => CHtml::listData(Monitor::model()->findAll(), 'id', 'modelo', 'marca'), 'htmlOptions' => array('prompt' => 'Seleccione Monitor'))));
        ?>
                    </div>


                </div>
            </div>
        </div>
        <?php 
    }