Exemplo n.º 1
0
 public function hiddenField($model, $attribute, $htmlOptions = array(), $value = null)
 {
     if ($value !== null) {
         $model->{$attribute} = $value;
     }
     return CHtml::activeHiddenInput($model, $attribute, $htmlOptions);
 }
Exemplo n.º 2
0
 public function hiddenField($model, $attribute, $htmlOptions = array())
 {
     return CHtml::activeHiddenInput($model, $attribute, $htmlOptions);
 }