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)

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

报告相同问题?

悬赏问题

  • ¥100 需要跳转番茄畅听app的adb命令
  • ¥50 寻找一位有逆向游戏盾sdk 应用程序经验的技术
  • ¥15 请问有用MZmine处理 “Waters SYNAPT G2-Si QTOF质谱仪在MSE模式下采集的非靶向数据” 的分析教程吗
  • ¥50 opencv4nodejs 如何安装
  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证