2015-11-30 19:19:17 +01:00
< ? php
/*
* This file is part of the NelmioApiDocBundle .
*
* ( c ) Nelmio < hello @ nelm . io >
*
* For the full copyright and license information , please view the LICENSE
* file that was distributed with this source code .
*/
namespace Nelmio\ApiDocBundle\Util ;
/**
* Extracted from FOSUserBundle .
*
* @ internal
*/
final class LegacyFormHelper
{
2024-10-01 15:54:04 +03:00
private static $map = [
2015-11-30 19:19:17 +01:00
'Symfony\Component\Form\Extension\Core\Type\FormType' => 'form' ,
// Tests
'Symfony\Component\Form\Extension\Core\Type\CollectionType' => 'collection' ,
'Symfony\Component\Form\Extension\Core\Type\NumberType' => 'number' ,
'Symfony\Component\Form\Extension\Core\Type\DateTimeType' => 'datetime' ,
'Symfony\Component\Form\Extension\Core\Type\DateType' => 'date' ,
'Symfony\Component\Form\Extension\Core\Type\ChoiceType' => 'choice' ,
'Symfony\Component\Form\Extension\Core\Type\TextType' => 'text' ,
'Symfony\Component\Form\Extension\Core\Type\TextareaType' => 'textarea' ,
'Symfony\Component\Form\Extension\Core\Type\CheckboxType' => 'checkbox' ,
'Nelmio\ApiDocBundle\Tests\Fixtures\Form\DependencyType' => 'dependency_type' ,
2024-10-01 15:54:04 +03:00
];
2015-11-30 19:19:17 +01:00
public static function getType ( $class )
{
if ( ! self :: isLegacy ()) {
return $class ;
}
if ( ! isset ( self :: $map [ $class ])) {
throw new \InvalidArgumentException ( sprintf ( 'Form type with class "%s" can not be found. Please check for typos or add it to the map in LegacyFormHelper' , $class ));
}
return self :: $map [ $class ];
}
public static function isLegacy ()
{
return ! method_exists ( 'Symfony\Component\Form\AbstractType' , 'getBlockPrefix' );
}
public static function hasBCBreaks ()
{
return ! method_exists ( 'Symfony\Component\Form\AbstractType' , 'setDefaultOptions' );
}
private function __construct ()
{
}
private function __clone ()
{
}
}