propel-bundle/Resources/skeleton/FormType.php

22 lines
439 B
PHP
Raw Normal View History

2013-11-24 17:19:14 +01:00
<?php
namespace ##NAMESPACE##;
2016-02-11 19:14:03 +01:00
use Propel\Bundle\PropelBundle\Form\BaseAbstractType;
2013-11-24 17:19:14 +01:00
use Symfony\Component\Form\FormBuilderInterface;
class ##CLASS## extends BaseAbstractType
{
protected $options = array(
'data_class' => '##FQCN##',
'name' => '##TYPE_NAME##',
);
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{##BUILD_CODE##
}
}