2012-03-06 12:57:16 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Provides the entry point to editing a single record presented by the grid.
|
|
|
|
* Doesn't show an edit view on its own or modifies the record, but rather relies on routing conventions
|
|
|
|
* established in {@link getColumnContent()}. The default routing applies to
|
2012-03-09 00:54:02 +01:00
|
|
|
* the {@link GridFieldDetailForm} component, which has to be added separately
|
2012-03-06 12:57:16 +01:00
|
|
|
* to the grid field configuration.
|
|
|
|
*/
|
2012-03-09 00:54:02 +01:00
|
|
|
class GridFieldEditButton implements GridField_ColumnProvider {
|
2012-03-06 12:57:16 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a column 'Delete'
|
|
|
|
*
|
|
|
|
* @param type $gridField
|
|
|
|
* @param array $columns
|
|
|
|
*/
|
|
|
|
public function augmentColumns($gridField, &$columns) {
|
|
|
|
if(!in_array('Actions', $columns))
|
|
|
|
$columns[] = 'Actions';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return any special attributes that will be used for FormField::createTag()
|
|
|
|
*
|
|
|
|
* @param GridField $gridField
|
|
|
|
* @param DataObject $record
|
|
|
|
* @param string $columnName
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getColumnAttributes($gridField, $record, $columnName) {
|
2012-03-12 10:23:59 +01:00
|
|
|
return array('class' => 'col-buttons');
|
2012-03-06 12:57:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add the title
|
|
|
|
*
|
|
|
|
* @param GridField $gridField
|
|
|
|
* @param string $columnName
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getColumnMetadata($gridField, $columnName) {
|
|
|
|
if($columnName == 'Actions') {
|
|
|
|
return array('title' => '');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Which columns are handled by this component
|
|
|
|
*
|
|
|
|
* @param type $gridField
|
|
|
|
* @return type
|
|
|
|
*/
|
|
|
|
public function getColumnsHandled($gridField) {
|
|
|
|
return array('Actions');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Which GridField actions are this component handling
|
|
|
|
*
|
|
|
|
* @param GridField $gridField
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getActions($gridField) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param GridField $gridField
|
|
|
|
* @param DataObject $record
|
|
|
|
* @param string $columnName
|
|
|
|
* @return string - the HTML for the column
|
|
|
|
*/
|
|
|
|
public function getColumnContent($gridField, $record, $columnName) {
|
2012-03-08 01:58:53 +01:00
|
|
|
if(!$record->canEdit()){
|
|
|
|
return;
|
|
|
|
}
|
2012-03-06 12:57:16 +01:00
|
|
|
$data = new ArrayData(array(
|
|
|
|
'Link' => Controller::join_links($gridField->Link('item'), $record->ID, 'edit')
|
|
|
|
));
|
|
|
|
|
2012-03-09 00:54:02 +01:00
|
|
|
return $data->renderWith('GridFieldEditButton');
|
2012-03-06 12:57:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the actions and apply any changes to the GridField
|
|
|
|
*
|
|
|
|
* @param GridField $gridField
|
|
|
|
* @param string $actionName
|
|
|
|
* @param mixed $arguments
|
|
|
|
* @param array $data - form data
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handleAction(GridField $gridField, $actionName, $arguments, $data) {
|
|
|
|
|
|
|
|
}
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|