Skip to content

Instantly share code, notes, and snippets.

@sdbruder
Created August 7, 2012 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sdbruder/3289159 to your computer and use it in GitHub Desktop.
Save sdbruder/3289159 to your computer and use it in GitHub Desktop.
<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