gpt4 book ai didi

symfony - Sonata Admin 列表自定义查询 ListMapper sonata_type_model 字段

转载 作者:行者123 更新时间:2023-12-02 19:02:42 24 4
gpt4 key购买 nike

我尝试获取一些与我的所有步骤对象匹配的条目,但它们之间没有直接关系,因此我需要使用自定义查询。

我在我的管理类(class)中尝试过:

    protected function configureListFields(ListMapper $listMapper)
{
$listMapper
->addIdentifier('texteEtape', null, array('label' => $this->getTranslator()->trans('label.step.text')));

$this->addCountryListMap($listMapper);

$listMapper
->addIdentifier('id')
->add('temperature')
->add('rincage', null, array('label' => $this->getTranslator()->trans('label.rinsing')))
->add('concentration')
->add('temps', null, array('label' => $this->getTranslator()->trans('label.time')))
->add('produit', null, array('label' => $this->getTranslator()->trans('label.product')))
->add('enabled', null, array('editable' => true))
->add('_action', 'actions', array(
'actions' => array(
'edit' => array(),
'delete' => array()
)
))
->add('updatedAt')
->add('Protocols','sonata_type_model', array('required' => true,
'class'=> 'HypredMainBundle:Protocole','property'=> 'name',
'query_builder' => $this->getProtocoles($listMapper->get('id'))));

getProtocoles 函数:

    private function getProtocoles($id) {
$querybuilder = $this->getManager()->getRepository('HypredMainBundle:Etape')->getStepProtocoles($id);

var_dump($querybuilder->getQuery()->getResult());
die();

return $querybuilder;
}

我想知道如何传递当前实体 ID(标识符返回 FieldDescription 对象)。

也许我错过了一些东西,我希望我的帖子是全面的。

预先感谢您的宝贵时间。

最佳答案

我认为您尝试的方法不会起作用。

我会尝试为协议(protocol)属性定义自定义模板

protected function configureListFields(ListMapper $listMapper)
{
$listMapper
->addIdentifier('id')
->add('Protocols','string', array('template' => 'HypredMainBundle:Protocole:list_protocole.html.twig'))
;
}

里面有对象及其 ID

{{ object.id | protocols() }}

我会写一个 Twig 扩展

class AppExtension extends \Twig_Extension
{
protected $container;

public function __constructor($container)
{
// remember to pass @service_container defining a twig extension service
$this->container = $container;
}

public function getFilters()
{
return array(
new \Twig_SimpleFilter('protocols', array($this, 'protocolsFilter')),
);
}

public function ProtocolsFilter($id)
{
// content of getProtocoles() function from question

$querybuilder = $this->container->get('doctrine')->getManager()->getRepository('HypredMainBundle:Etape')->getStepProtocoles($id);
var_dump($querybuilder->getQuery()->getResult());
die();

return $querybuilder;
}

public function getName()
{
return 'app_extension';
}
}

关于symfony - Sonata Admin 列表自定义查询 ListMapper sonata_type_model 字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36530757/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com