mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
24 lines
626 B
PHP
24 lines
626 B
PHP
|
<?php
|
||
|
/**
|
||
|
* This component provides a button for opening the add new form provided by {@link GridFieldDetailForm}.
|
||
|
*
|
||
|
* @package sapphire
|
||
|
* @subpackage gridfield
|
||
|
*/
|
||
|
class GridFieldAddNewButton implements GridField_HTMLProvider {
|
||
|
protected $targetFragment;
|
||
|
|
||
|
public function __construct($targetFragment = 'before') {
|
||
|
$this->targetFragment = $targetFragment;
|
||
|
}
|
||
|
|
||
|
public function getHTMLFragments($gridField) {
|
||
|
$data = new ArrayData(array(
|
||
|
'NewLink' => Controller::join_links($gridField->Link('item'), 'new'),
|
||
|
));
|
||
|
return array(
|
||
|
$this->targetFragment => $data->renderWith('GridFieldAddNewbutton'),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|