mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
18 lines
431 B
PHP
18 lines
431 B
PHP
|
<?php
|
||
|
/**
|
||
|
* A custom grid field request handler that allows interacting with form fields when adding records.
|
||
|
*/
|
||
|
class GridFieldAddNewMultiClassHandler extends GridFieldDetailForm_ItemRequest {
|
||
|
|
||
|
public function Link($action = null) {
|
||
|
if($this->record->ID) {
|
||
|
return parent::Link($action);
|
||
|
} else {
|
||
|
return Controller::join_links(
|
||
|
$this->gridField->Link(), 'add-multi-class', get_class($this->record)
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|