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

61 lines
1.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 Trinity\Bundle\AdminBundle\Form\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class BatchType extends AbstractType
{
const BATCH_COPY = 'copy';
const BATCH_REMOVE = 'remove';
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add(
'objects',
'choice',
array(
'required' => true,
'multiple' => true,
'expanded' => true,
)
);
$builder->add(
'action',
'choice',
array(
'required' => true,
'choices' => array(
self::BATCH_COPY => 'Copy',
self::BATCH_REMOVE => 'Remove',
),
'multiple' => false,
)
);
}
/**
* {@inheritdoc}
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
));
}
/**
* {@inheritdoc}
*/
public function getName()
{
return 'batch';
}
}