使用Sonata Admin自定义选择sonata_type_model字段列表

时间:2013-08-28 08:03:38

标签: symfony sonata-admin

我正在使用Sonata Admin,我有一个类别的字段,我需要按顺序显示它们,如同选择的树:

<select>
    <option>Category father-1</option>
    <option>--Category child-1-1</option>
    <option>--Category child-1-2</option>
    <option>--Category child-1-3</option>
    <option>----Category child-1-3-1</option>
    <option>----Category child-1-3-2</option>
    <option>--Category child-1-4</option>
    <option>--...</option>
    <option>Category father-2</option>
</select>

有可能吗?我已尝试过在'choice_list'中使用getTreeCatsArray方法生成数组:

protected function configureFormFields(FormMapper $formMapper)
{
    $tree_cat_array = $this->em->getRepository('MyBundle:Category')->getTreeCatsArray();

    $formMapper
        ->add('category', 'sonata_type_model', array(
                'empty_value' => '', 
                'choice_list' => $tree_cat_array)); 
}

这显示错误:

The option "choice_list" with value "Array" is expected to be of type "null", "Symfony\Component\Form\Extension\Core\ChoiceList\ChoiceListInterface"

我不确定是否必须使用字段类型'sonata_type_model'或'choice'

3 个答案:

答案 0 :(得分:29)

好的,我已经在树中订购了类别列表,将其包含在相关实体中,如下所示:

protected function configureFormFields(FormMapper $formMapper)
{
    $em = $this->modelManager->getEntityManager('MyBundle\Entity\Category');

    $query = $em->createQueryBuilder('c')
                ->select('c')
                ->from('MyBundle:Category', 'c')
                ->where('c.parent IS NOT NULL')
                ->orderBy('c.root, c.lft', 'ASC');

    $formMapper
        ...
        ->add('categoria', 'sonata_type_model', array(
            'required' => true, 
            'query' => $query
        ))
        ...
    ; 
}

我希望它可以帮助某人

答案 1 :(得分:8)

尝试:

->add('category', 'entity', array(
        'class'    => 'Acme\Entity\Category',
)

仅当您拥有实体Category时,此功能才有效。

有关为 SonataAdminBundle 创建Category实体的树编辑器,请参阅this articleHere与俄语相同,但在第一个版本中包含缺少的代码。

答案 2 :(得分:0)

在阅读完上述答案之后,我必须执行以下操作以获得OP之后的功能:

protected function configureFormFields(FormMapper $formMapper)
{

$em = $this->modelManager->getEntityManager('YourBundleFile\YourBundleFileBundle\Entity\YourEntity');

$qb = $em->createQueryBuilder();

$qb = $qb->add('select', 'u')
        ->add('from', 'YourBundleFile\YourBundleFileBundle\Entity\YourEntity u');

$query = $qb->getQuery();
$arrayType = $query->getArrayResult();

$formMapper
->add('yourProperty', 'choice', array('choices'=>$arrayType))
-end();
}