dongliechuich10319 2017-08-18 14:52
浏览 43
已采纳

Symfony - Sonata Abstract Admin和getDoctrine

I want to use the prePersist() hook to set a fetched object into a ready-to-be-persisted object. But I can't figure how to use doctrine with Sonata Admin Bundle.

Here is my code :

    namespace ShareBundle\Admin;

use Sonata\AdminBundle\Admin\AbstractAdmin;
use Sonata\AdminBundle\Datagrid\ListMapper;
use Sonata\AdminBundle\Datagrid\DatagridMapper;
use Sonata\AdminBundle\Form\FormMapper;



class UserShareAdmin extends AbstractAdmin
{
    protected function configureFormFields(FormMapper $formMapper)
    {
        $formMapper->add('quantity', 'text')
            ->add('user', 'sonata_type_model_list');
    }

    protected function configureDatagridFilters(DatagridMapper $datagridMapper)
    {
        $datagridMapper->add('quantity');
    }

    protected function configureListFields(ListMapper $listMapper)
    {
        $listMapper->addIdentifier('quantity')->addIdentifier('user')->addIdentifier('date');
    }

    public function prePersist($object)
    {
        $shareManager = $this->getDoctrine()->getManager()->getRepository('ShareBundle:Share');
        $value = $shareManager->findOneBy(array(), array('date' => 'DESC'));
        $object->setShare($value);
    }
}

Does anyone have any idea how to do it ?

Thanks !

  • 写回答

1条回答 默认 最新

  • duanpai1033 2017-08-21 07:39
    关注

    Okay guys, so I have figured it out !

    I had to specify the orm default entity manager in my service argument

    #app/config/services.yml
    
    arguments: [~, ShareBundle\Entity\UserShare, ~, @doctrine.orm.default_entity_manager]
    

    And I had to extend the construct function in my Admin class.

     public function __construct($code, $class, $baseControllerName, $em)
    {
        parent::__construct($code, $class, $baseControllerName);
        $this->em = $em;
    }
    

    (Thanks to this answer)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题