Skip to content

Instantly share code, notes, and snippets.

@andreia
Created January 7, 2011 12:24
Show Gist options
  • Save andreia/769407 to your computer and use it in GitHub Desktop.
Save andreia/769407 to your computer and use it in GitHub Desktop.
$years = range(2000, date("Y"));
$this->widgetSchema['start_date'] = new sfWidgetFormFilterDate(array(
'from_date' => new sfWidgetFormDate(array('years' => array_combine($years, $years))),
'to_date' => new sfWidgetFormDate(array('years' => array_combine($years, $years))),
'with_empty' => false,
'template' => 'from %from_date% to %to_date%',
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment