Is there any way to determine current action (create or edit) in Sonata\AdminBundle\Admin\Admin::configureFormFields()?

前端 未结 6 1140
深忆病人
深忆病人 2021-02-12 19:35

I\'d like to create different fields configuration for create and edit actions in Sonata Admin Bundle.

Is there any way to determine it except checking $this->g

6条回答
  •  感动是毒
    2021-02-12 19:55

    You can also do this:

    protected function configureFormFields(FormMapper $formMapper) {
      if ($this->isCurrentRoute('create')) {
        // CREATE
      }
      else {
        // EDIT
      }
    }
    

提交回复
热议问题