项目作者: jorrit

项目描述 :
Adds a clone action to Sonata Admin.
高级语言: PHP
项目地址: git://github.com/jorrit/SonataCloneActionBundle.git
创建时间: 2020-07-23T13:33:53Z
项目社区:https://github.com/jorrit/SonataCloneActionBundle

开源协议:MIT License

下载


Sonata Admin Clone Action

Latest Stable Version Total Downloads Latest Unstable Version License PHP Version Require

Adds a clone action to Sonata Admin. This allows you to add a clone button to
your list action that leads to a create form with the values of the cloned item
prefilled.

The clone action does not create the clone in the database, this happens only
when the create form is submitted.

Installation

  1. $ composer require jorrit/sonata-clone-action-bundle

Setup

The extension is registered just like any other Sonata Admin extension.
For more information regarding extensions, see the Sonata Admin documentation.

Add to specific admins

Add the following code to services.yml to add the extension to one or more admin classes.

Replace admin1 and admin2 with the service names of your admin classes.

  1. admin.clone.extension:
  2. class: Jorrit\SonataCloneActionBundle\Admin\Extension\CloneAdminExtension
  3. tags:
  4. - { name: sonata.admin.extension, target: admin1 }
  5. - { name: sonata.admin.extension, target: admin2 }

Add to all admins

Add the following code to services.yml to add the extension all admin classes.

  1. admin.clone.extension:
  2. class: Jorrit\SonataCloneActionBundle\Admin\Extension\CloneAdminExtension
  3. tags:
  4. - { name: sonata.admin.extension, global: true }

Add the action to your admin list

Edit your admin class to add clone to the list of actions:

  1. protected function configureListFields(ListMapper $listMapper)
  2. {
  3. $listMapper
  4. ...
  5. ->add('_action', null, [
  6. 'actions' => [
  7. 'edit' => [],
  8. 'delete' => [],
  9. 'clone' => [],
  10. ]
  11. ]);
  12. }