Skip to content

Instantly share code, notes, and snippets.

@avanzu
avanzu / gist:bb2d4b12113ed907b5ff
Created March 25, 2015 08:55
Restrictable date type
class RestrictedDateType extends DateType {
public function buildView(FormView $view, FormInterface $form, array $options)
{
parent::buildView($view, $form, $options);
// transport the option into the form block
$view->vars['restricted'] = $options['restricted'];
}