我想知道天气可能以及如何为Symfony 2中的SonataAdminBundle配置列表视图的过滤器
假设我有实体Order,指向实体User,指向实体Company。 我想配置过滤器既可以由用户过滤,也可以按公司(用户公司)进行过滤 第一个是直截了当的。第二个是我试图澄清的内容。
在OrderAdmin类中,我会将configureDatagridFilters覆盖为:
protected function configureDatagridFilters(DatagridMapper $datagridMapper)
{
$datagridMapper
->add('created_at')
//... some other filters on Order fields, as usual
// the filter on User, provided 'user', no ploblem
->add('user')
// and the filter by Company
->add('user.company') // this doesn't work, of course
;
}
公司过滤器的语法受到sonta docs http://sonata-project.org/bundles/doctrine-orm-admin/2-0/doc/reference/filter_field_definition.html
的启发不打算用于我试图完成的任务,但无法找到在哪里查看。
希望有人对此有所了解。
由于
答案 0 :(得分:15)
最后,我找到了另一个问题引导的答案:How can I create a custom DataGrid filter in SonataAdmin并仔细阅读了我在问题中粘贴的奏鸣曲管理员文档链接。
如果有人遇到此问题并采用上一个示例:
protected function configureDatagridFilters(DatagridMapper $datagridMapper)
{
$datagridMapper
//... whatever filter
// and the filter by Company
->add('company', 'doctrine_orm_callback', array(
'callback' => array($this, 'callbackFilterCompany'),
'field_type' => 'checkbox'
),
'choice',
array('choices' => $this -> getCompanyChoices())
;
}
方法getCompanyChoices检索公司ids =>的关联数组。公司名称(例如)。而callbackFilterCompany方法如下
public function callbackFilterCompany ($queryBuilder, $alias, $field, $value)
{
if(!is_array($value) or !array_key_exists('value', $value)
or empty($value['value'])){
return;
}
$queryBuilder
->leftJoin(sprintf('%s.user', $alias), 'u')
->leftJoin('u.company', 'c')
->andWhere('c.id = :id')
->setParameter('id', $value['value'])
;
return true;
}
答案 1 :(得分:2)