deblan.tv/src/Deblan/Bundle/BlogBundle/Form/Type/UserCommentType.php
2015-03-02 21:57:49 +01:00

90 lines
2.1 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace Deblan\Bundle\BlogBundle\Form\Type;
use Propel\PropelBundle\Form\BaseAbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\Validator\Constraints;
class UserCommentType extends BaseAbstractType
{
protected $options = array(
'data_class' => 'Deblan\Bundle\BlogBundle\Model\Comment',
'name' => 'comment',
);
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add(
'Author',
'text',
array(
'attr' => array('class' => 'form-control'),
'required' => true,
'constraints' => array(
new Constraints\NotBlank(),
)
)
);
$builder->add(
'Website',
'url',
array(
'attr' => array('class' => 'form-control'),
'required' => false,
'constraints' => array(
new Constraints\Url(),
)
)
);
$builder->add(
'Email',
'email',
array(
'attr' => array('class' => 'form-control'),
'required' => false,
'constraints' => array(
new Constraints\Email(),
)
)
);
$builder->add(
'Content',
'textarea',
array(
'attr' => array(
'class' => 'form-control',
'rows' => 3,
),
'required' => true,
'constraints' => array(
new Constraints\NotBlank(),
)
)
);
$builder->add(
'ParentCommentId',
'hidden',
array(
'required' => false,
)
);
$builder->add(
'Follow',
'checkbox',
array(
'mapped' => false,
'required' => false,
)
);
}
}