deblan.tv/vendor/trinity/src/Trinity/Bundle/ContentManagerBundle/Form/Type/BlockVersionType.php
2015-03-02 21:57:49 +01:00

46 lines
1.1 KiB
PHP
Raw Permalink 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 Trinity\Bundle\ContentManagerBundle\Form\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class BlockVersionType extends AbstractType
{
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('name');
$builder->add('value');
$builder->add('type');
$builder->add('template');
$builder->add('pageId');
$builder->add('updatedAt');
$builder->add('createdAt');
$builder->add('versionCreatedAt');
$builder->add('versionCreatedBy');
$builder->add('pageIdVersion');
}
/**
* {@inheritdoc}
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'Trinity\Bundle\ContentManagerBundle\Model\BlockVersion',
));
}
/**
* {@inheritdoc}
*/
public function getName()
{
return 'blockversion';
}
}