Created
August 7, 2012 20:48
-
-
Save sdbruder/3289159 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="<?php echo $form->fieldClass($model, 'vehicle_fuel_type'); ?>"> | |
<?php echo $form->labelEx($model,'vehicle_fuel_type'); ?> | |
<div class="input"> | |
<?php echo $form->dropDownList($model,'vehicle_fuel_type', | |
array('GA'=>'Gasolina', | |
'AL'=>'Álcool', | |
'DI'=>'Diesel', | |
'GN'=>'Gás Natural', | |
'EL'=>'Eletricidade', | |
), | |
array('empty' => '(Selecione tipo combustível)')); ?> | |
<?php echo $form->error($model,'vehicle_fuel_type'); ?> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment