Файл: symfony-2.7/src/Symfony/Bridge/Propel1/Form/PropelExtension.php
Строк: 45
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SymfonyBridgePropel1Form;
use SymfonyComponentFormAbstractExtension;
use SymfonyComponentPropertyAccessPropertyAccess;
/**
* Represents the Propel form extension, which loads the Propel functionality.
*
* @author Joseph Rouff <rouffj@gmail.com>
*/
class PropelExtension extends AbstractExtension
{
protected function loadTypes()
{
return array(
new TypeModelType(PropertyAccess::createPropertyAccessor()),
new TypeTranslationCollectionType(),
new TypeTranslationType(),
);
}
protected function loadTypeGuesser()
{
return new PropelTypeGuesser();
}
}