Skip to content

Instantly share code, notes, and snippets.

@JuanLuisGarciaBorrego
Created December 17, 2014 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JuanLuisGarciaBorrego/3f2c99b381a409862b92 to your computer and use it in GitHub Desktop.
Save JuanLuisGarciaBorrego/3f2c99b381a409862b92 to your computer and use it in GitHub Desktop.
Form/Type/TaskType.php
<?php
namespace JuanLuis\LabBundle\Form\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class TaskType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name', 'text',
array(
'max_length' => 100
)
)
->add('description');
}
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'JuanLuis\LabBundle\Entity\Task'
));
}
public function getName()
{
return 'Task';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment