trinity-cms-bundles/src/Trinity/Bundle/ContentManagerBundle/Form/Type/SimpleFileType.php
2015-03-03 18:51:20 +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';
}
}