Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <? php
- $form['status_list'] = array(
- '#type' => 'select',
- '#title' => t('Freeway Project Statuses'),
- '#options' => array(
- 0 => t('-Select Status-'),
- 1 => t('Draft'),
- 2 => t('NotSpecified'),
- 3 => t('Quote'),
- 4 => t('Forecasted'),
- 5 => t('InEvaluation'),
- 6 => t('Cancelled'),
- 7 => t('Booked'),
- 8 => t('InProduction'),
- 9 => t('Completed'),
- 10 => t('Closed'),
- ),
- '#default_value' => array('0' => 'Select Status'),
- '#weight' => 0,
- );
Advertisement
Add Comment
Please, Sign In to add comment