This plugin is for CakePHP 3.x and contains behavior that handles duplicating entities including related data.
Using composer
composer require riesenia/cakephp-duplicatable
Load plugin in config/bootstrap.php
Plugin::load('Duplicatable');
This behavior provides multiple methods for your Table
objects.
This behavior provides a duplicate
method for the table. It takes the primary key of the record to duplicate as its only argument.
Using this method will clone the record defined by the primary key provided as well as all related records as defined in the configuration.
This behavior provides a duplicateEntity
method for the table. It mainly acts as the duplicate
method except it does not save the duplicated record but returns the Entity to be saved instead. This is useful if you need to manipulate the Entity before saving it.
- finder - finder to use to get entities. Set to "translations" to fetch and duplicate translations too. Defaults to "all". Possible to set an array for more finders.
- contain - set related entities that will be duplicated
- remove - fields that will be removed from the entity
- set - fields that will be set to provided value or callable to modify the value. If you provide a callable, it will take the entity being cloned as the only argument
- prepend - fields that will have value prepended by provided text
- append - fields that will have value appended by provided text
- saveOptions - options for save on primary table
class InvoicesTable extends Table
{
public function initialize(array $config)
{
parent::initialize($config);
// add Duplicatable behavior
$this->addBehavior('Duplicatable.Duplicatable', [
// table finder
'finder' => 'all',
// duplicate also items and their properties
'contain' => ['InvoiceItems.InvoiceItemProperties'],
// remove created field from both invoice and items
'remove' => ['created', 'invoice_items.created'],
// mark invoice as copied
'set' => [
'name' => function($entity) {
return md5($entity->name) . ' ' . $entity->name;
},
'copied' => true
],
// prepend properties name
'prepend' => ['invoice_items.invoice_items_properties.name' => 'NEW '],
// append copy to the name
'append' => ['name' => ' - copy']
]);
// associations (InvoiceItems table hasMany InvoiceItemProperties)
$this->hasMany('InvoiceItems', [
'foreignKey' => 'invoice_id',
'className' => 'InvoiceItems'
]);
}
}
// ... somewhere in the controller
$this->Invoices->duplicate(4);