deblan.tv/vendor/trinity/src/Trinity/.svn/pristine/85/8589f53871cb63067caf6b0f380e99c71bf4cc43.svn-base
2015-03-02 21:57:49 +01:00

42 lines
948 B
Plaintext
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\ContentManagerBundle\Form\Type;
use Symfony\Component\Form\FormBuilderInterface;
use Trinity\Component\Form\EventListener\FileDeleteFormListener;
class FileImageBlockType extends BlockType
{
protected $options = array(
'data_class' => 'Trinity\Bundle\ContentManagerBundle\Block\FileBlock',
);
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add(
'value',
'file',
array(
'data_class' => null,
'attr' => array(
'upload_dir' => 'uploads/slots'
)
)
);
$builder->addEventSubscriber(new FileDeleteFormListener($builder->getFormFactory(), array('value')));
}
/**
* {@inheritdoc}
*/
public function getName()
{
return 'file_image_block';
}
}