uc_select_year
- 5
uc_select_year($title = NULL, $default = NULL, $min = NULL, $max = NULL)
- 6
uc_select_year($title = NULL, $default = NULL, $min = NULL, $max = NULL, $allow_empty = FALSE)
Create a year select box for a form.
Code
contributions/ubercart/uc_store/uc_store.module, line 2288
<?php
function uc_select_year($title = NULL, $default = NULL, $min = NULL, $max = NULL) {
$min = is_null($min) ? intval(date('Y')) : $min;
$max = is_null($max) ? intval(date('Y')) + 20 : $max;
$select = array(
'#type' => 'select',
'#title' => (is_null($title) ? t('Year') : $title),
'#options' => drupal_map_assoc(range($min, $max)),
'#default_value' => (is_null($default) ? 0 : $default),
);
return $select;
}
?>