我一直在使用Silex进行我的最新项目,我试图跟随Symfony食谱中的"How to Dynamically Modify Forms Using Form Events"。我到了使用实体字段类型的部分,并意识到它在Silex中不可用。
看起来symfony / doctrine-bridge可以添加到我的composer.json中,其中包含" EntityType"。有没有人成功地让实体类型在Silex中工作或遇到这个问题并找到了解决方法?
我在想这样的事情可能有用:
$builder
->add('myentity', new EntityType($objectManager, $queryBuilder, 'Path\To\Entity'), array(
))
;
我还发现this answer看起来可能会通过扩展form.factory来解决这个问题但尚未尝试过。
答案 0 :(得分:6)
我使用this Gist在Silex中添加EntityType字段。
但诀窍是通过像FormServiceProvider doc那样扩展DoctrineOrmExtension
来注册form.extensions
表单扩展名。
DoctrineOrmExtension
在其构造函数中需要一个ManagerRegistry
接口,可以实现扩展Doctrine\Common\Persistence\AbstractManagerRegistry
,如下所示:
<?php
namespace MyNamespace\Form\Extensions\Doctrine\Bridge;
use Doctrine\Common\Persistence\AbstractManagerRegistry;
use Silex\Application;
/**
* References Doctrine connections and entity/document managers.
*
* @author Саша Стаменковић <umpirsky@gmail.com>
*/
class ManagerRegistry extends AbstractManagerRegistry
{
/**
* @var Application
*/
protected $container;
protected function getService($name)
{
return $this->container[$name];
}
protected function resetService($name)
{
unset($this->container[$name]);
}
public function getAliasNamespace($alias)
{
throw new \BadMethodCallException('Namespace aliases not supported.');
}
public function setContainer(Application $container)
{
$this->container = $container['orm.ems'];
}
}
因此,要注册表单扩展名,请使用:
// Doctrine Brigde for form extension
$app['form.extensions'] = $app->share($app->extend('form.extensions', function ($extensions) use ($app) {
$manager = new MyNamespace\Form\Extensions\Doctrine\Bridge\ManagerRegistry(
null, array(), array('default'), null, null, '\Doctrine\ORM\Proxy\Proxy'
);
$manager->setContainer($app);
$extensions[] = new Symfony\Bridge\Doctrine\Form\DoctrineOrmExtension($manager);
return $extensions;
}));