* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Propel\Bundle\PropelBundle\Form; use Symfony\Component\Form\AbstractExtension; use Symfony\Component\PropertyAccess\PropertyAccess; /** * Represents the Propel form extension, which loads the Propel functionality. * * @author Joseph Rouff */ class PropelExtension extends AbstractExtension { protected function loadTypes() { return array( new Type\ModelType(PropertyAccess::createPropertyAccessor()), new Type\TranslationCollectionType(), new Type\TranslationType() ); } protected function loadTypeGuesser() { return new TypeGuesser(); } }