Ejemplo n.º 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 Groupaccount the loaded model
  * @throws CHttpException
  */
 public function loadModel($id)
 {
     $model = Groupaccount::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }
Ejemplo n.º 2
0
echo $form->labelEx($model, 'Status:', array('class' => 'control-label'));
?>
		<?php 
echo $form->dropDownList($model, 'Status', Domain::getAccountStatusOptions(), array('class' => 'form-control'));
?>
		<?php 
echo $form->error($model, 'Status', array('class' => 'text-danger'));
?>
	</div>

	<div class="form-group">
		<?php 
echo $form->labelEx($model, 'ID_GroupAcc:', array('class' => 'control-label'));
?>
		<?php 
echo $form->dropdownList($model, 'ID_GroupAcc', Groupaccount::getGroupAccountOptions(), array('class' => 'form-control'));
?>
		<?php 
echo $form->error($model, 'ID_GroupAcc', array('class' => 'text-danger'));
?>
	</div>
        
        
        <div class="form-group">
		<?php 
echo $form->labelEx($user, 'Name:', array('class' => 'control-label'));
?>
		<?php 
echo $form->textField($user, 'Name', array('size' => 50, 'maxlength' => 50, 'class' => 'form-control'));
?>
		<?php 
Ejemplo n.º 3
0
 public static function getGroupAccountOptions()
 {
     return CHtml::listData(Groupaccount::model()->findAll(), 'ID', 'Name');
 }