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

19 lines
293 B
PHP

<?php
namespace Trinity\Bundle\ContentManagerBundle\Form\Type;
use Symfony\Component\Form\AbstractType;
class SimpleFileType extends AbstractType
{
public function getParent()
{
return 'file';
}
public function getName()
{
return 'simple_file';
}
}