unisolutions/silverstripe-copybutton

There is no license information available for the latest version (v1.0.0) of this package.

Adds copy button to the GridField.

Installs: 35 674

Dependents: 0

Suggesters: 3

Security: 0

Stars: 17

Watchers: 2

Forks: 20

Open Issues: 6

Type:silverstripe-module

v1.0.0 2015-01-14 09:47 UTC

This package is not auto-updated.

Last update: 2024-03-25 12:55:38 UTC


README

Adds copy button to the GridField

Maintainer Contact

Elvinas Liutkevičius

<elvinas (at) unisolutions (dot) eu>

Requirements

SilverStripe 3

Documentation

Simply install the module using the standard method.

To add the button to the GridField you need to extend ModelAdmin and override getEditForm() method like this:

function getEditForm($id = null, $fields = null) {
	$form = parent::getEditForm();

	$form
		->Fields()
		->fieldByName($this->sanitiseClassName($this->modelClass))
		->getConfig()
		->addComponent(new GridFieldCopyButton(), 'GridFieldEditButton') // or just ->addComponent(new GridFieldCopyButton())
	;

	return $form;
}

This action will make exact copy of the record (with all relations and etc.). Sometimes you will need to do some actions just after copy operation (i.e. you'll need to remove some relations). It is easily achieved by extending DataObject and writing all the actions in the onAfterDuplicate() method.

class SomeObjectExtension extends DataExtension {

	public function onAfterDuplicate() {
		DB::query("delete from Member_SomeObject where SomeObjectID = ".$this->owner->ID);
	}

}