2012-01-09 17:17:31 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2014-08-15 08:53:05 +02:00
|
|
|
* Provides view and edit forms at GridField-specific URLs.
|
2013-05-20 12:18:07 +02:00
|
|
|
*
|
2012-02-27 18:26:11 +01:00
|
|
|
* These can be placed into pop-ups by an appropriate front-end.
|
2013-05-20 12:18:07 +02:00
|
|
|
*
|
|
|
|
* Usually added to a {@link GridField} alongside of a
|
2014-08-15 08:53:05 +02:00
|
|
|
* {@link GridFieldEditButton} which takes care of linking the
|
2013-05-20 12:18:07 +02:00
|
|
|
* individual rows to their edit view.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2012-01-09 17:17:31 +01:00
|
|
|
* The URLs provided will be off the following form:
|
|
|
|
* - <FormURL>/field/<GridFieldName>/item/<RecordID>
|
|
|
|
* - <FormURL>/field/<GridFieldName>/item/<RecordID>/edit
|
2013-05-20 12:18:07 +02:00
|
|
|
*
|
2013-11-29 05:12:47 +01:00
|
|
|
* @package forms
|
2013-05-20 12:18:07 +02:00
|
|
|
* @subpackage fields-gridfield
|
2012-01-09 17:17:31 +01:00
|
|
|
*/
|
2012-03-09 00:54:02 +01:00
|
|
|
class GridFieldDetailForm implements GridField_URLHandler {
|
2012-01-09 17:17:31 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var String
|
|
|
|
*/
|
2012-03-09 00:54:02 +01:00
|
|
|
protected $template = 'GridFieldDetailForm';
|
2012-01-25 05:31:27 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2012-02-27 17:41:01 +01:00
|
|
|
protected $name;
|
2012-01-25 05:31:27 +01:00
|
|
|
|
2012-03-05 17:05:40 +01:00
|
|
|
/**
|
|
|
|
* @var Validator The form validator used for both add and edit fields.
|
|
|
|
*/
|
|
|
|
protected $validator;
|
|
|
|
|
2012-11-08 01:26:38 +01:00
|
|
|
/**
|
|
|
|
* @var FieldList Falls back to {@link DataObject->getCMSFields()} if not defined.
|
|
|
|
*/
|
|
|
|
protected $fields;
|
|
|
|
|
2012-04-30 12:31:17 +02:00
|
|
|
/**
|
|
|
|
* @var String
|
|
|
|
*/
|
|
|
|
protected $itemRequestClass;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var function With two parameters: $form and $component
|
|
|
|
*/
|
|
|
|
protected $itemEditFormCallback;
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function getURLHandlers($gridField) {
|
2012-01-09 17:17:31 +01:00
|
|
|
return array(
|
|
|
|
'item/$ID' => 'handleItem',
|
2012-01-25 05:31:27 +01:00
|
|
|
'autocomplete' => 'handleAutocomplete',
|
2012-01-09 17:17:31 +01:00
|
|
|
);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-01-25 05:31:27 +01:00
|
|
|
/**
|
|
|
|
* Create a popup component. The two arguments will specify how the popup form's HTML and
|
|
|
|
* behaviour is created. The given controller will be customised, putting the edit form into the
|
|
|
|
* template with the given name.
|
|
|
|
*
|
|
|
|
* The arguments are experimental API's to support partial content to be passed back to whatever
|
|
|
|
* controller who wants to display the getCMSFields
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2012-02-27 17:41:01 +01:00
|
|
|
* @param string $name The name of the edit form to place into the pop-up form
|
2012-01-25 05:31:27 +01:00
|
|
|
*/
|
2012-02-27 17:41:01 +01:00
|
|
|
public function __construct($name = 'DetailForm') {
|
|
|
|
$this->name = $name;
|
2012-01-25 05:31:27 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-01-25 05:31:27 +01:00
|
|
|
/**
|
|
|
|
*
|
2013-06-21 00:32:08 +02:00
|
|
|
* @param GridField $gridField
|
|
|
|
* @param SS_HTTPRequest $request
|
2014-08-15 08:53:05 +02:00
|
|
|
* @return GridFieldDetailForm_ItemRequest
|
2012-01-25 05:31:27 +01:00
|
|
|
*/
|
|
|
|
public function handleItem($gridField, $request) {
|
2014-06-12 05:31:03 +02:00
|
|
|
// Our getController could either give us a true Controller, if this is the top-level GridField.
|
|
|
|
// It could also give us a RequestHandler in the form of GridFieldDetailForm_ItemRequest if this is a
|
|
|
|
// nested GridField.
|
|
|
|
$requestHandler = $gridField->getForm()->getController();
|
2012-02-27 17:43:32 +01:00
|
|
|
|
2012-02-20 02:50:53 +01:00
|
|
|
if(is_numeric($request->param('ID'))) {
|
|
|
|
$record = $gridField->getList()->byId($request->param("ID"));
|
|
|
|
} else {
|
2014-08-15 08:53:05 +02:00
|
|
|
$record = Object::create($gridField->getModelClass());
|
2012-02-20 02:50:53 +01:00
|
|
|
}
|
|
|
|
|
2012-04-30 12:31:17 +02:00
|
|
|
$class = $this->getItemRequestClass();
|
2012-02-27 17:41:01 +01:00
|
|
|
|
2014-06-12 05:31:03 +02:00
|
|
|
$handler = Object::create($class, $gridField, $this, $record, $requestHandler, $this->name);
|
2012-01-09 17:17:31 +01:00
|
|
|
$handler->setTemplate($this->template);
|
2012-02-20 02:50:53 +01:00
|
|
|
|
2014-01-11 03:40:48 +01:00
|
|
|
// if no validator has been set on the GridField and the record has a
|
|
|
|
// CMS validator, use that.
|
2015-02-25 20:11:12 +01:00
|
|
|
if(!$this->getValidator() && (method_exists($record, 'getCMSValidator') || $record instanceof Object && $record->hasMethod('getCMSValidator'))) {
|
2014-01-11 03:40:48 +01:00
|
|
|
$this->setValidator($record->getCMSValidator());
|
|
|
|
}
|
|
|
|
|
2012-03-06 01:20:53 +01:00
|
|
|
return $handler->handleRequest($request, DataModel::inst());
|
2012-01-09 17:17:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param String
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function setTemplate($template) {
|
2012-01-09 17:17:31 +01:00
|
|
|
$this->template = $template;
|
2012-03-05 17:05:40 +01:00
|
|
|
return $this;
|
2012-01-09 17:17:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return String
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function getTemplate() {
|
2012-01-09 17:17:31 +01:00
|
|
|
return $this->template;
|
|
|
|
}
|
2012-02-27 17:41:01 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param String
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function setName($name) {
|
2012-02-27 17:41:01 +01:00
|
|
|
$this->name = $name;
|
2012-03-05 17:05:40 +01:00
|
|
|
return $this;
|
2012-02-27 17:41:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return String
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function getName() {
|
2012-02-27 17:41:01 +01:00
|
|
|
return $this->name;
|
|
|
|
}
|
2012-03-05 17:05:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Validator $validator
|
|
|
|
*/
|
|
|
|
public function setValidator(Validator $validator) {
|
|
|
|
$this->validator = $validator;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Validator
|
|
|
|
*/
|
|
|
|
public function getValidator() {
|
|
|
|
return $this->validator;
|
|
|
|
}
|
2012-04-30 12:31:17 +02:00
|
|
|
|
2012-11-08 01:26:38 +01:00
|
|
|
/**
|
|
|
|
* @param FieldList $fields
|
|
|
|
*/
|
|
|
|
public function setFields(FieldList $fields) {
|
|
|
|
$this->fields = $fields;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return FieldList
|
|
|
|
*/
|
|
|
|
public function getFields() {
|
|
|
|
return $this->fields;
|
|
|
|
}
|
|
|
|
|
2012-04-30 12:31:17 +02:00
|
|
|
/**
|
|
|
|
* @param String
|
|
|
|
*/
|
|
|
|
public function setItemRequestClass($class) {
|
|
|
|
$this->itemRequestClass = $class;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return String
|
|
|
|
*/
|
|
|
|
public function getItemRequestClass() {
|
|
|
|
if($this->itemRequestClass) {
|
|
|
|
return $this->itemRequestClass;
|
|
|
|
} else if(ClassInfo::exists(get_class($this) . "_ItemRequest")) {
|
|
|
|
return get_class($this) . "_ItemRequest";
|
|
|
|
} else {
|
2013-07-09 22:58:24 +02:00
|
|
|
return 'GridFieldDetailForm_ItemRequest';
|
2012-04-30 12:31:17 +02:00
|
|
|
}
|
|
|
|
}
|
2012-04-30 13:46:51 +02:00
|
|
|
|
|
|
|
/**
|
2012-04-30 14:20:21 +02:00
|
|
|
* @param Closure $cb Make changes on the edit form after constructing it.
|
2012-04-30 13:46:51 +02:00
|
|
|
*/
|
2012-04-30 14:20:21 +02:00
|
|
|
public function setItemEditFormCallback(Closure $cb) {
|
2012-04-30 13:46:51 +02:00
|
|
|
$this->itemEditFormCallback = $cb;
|
2015-03-23 16:16:09 +01:00
|
|
|
return $this;
|
2012-04-30 13:46:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-04-30 14:20:21 +02:00
|
|
|
* @return Closure
|
2012-04-30 13:46:51 +02:00
|
|
|
*/
|
|
|
|
public function getItemEditFormCallback() {
|
|
|
|
return $this->itemEditFormCallback;
|
|
|
|
}
|
2014-05-07 13:35:52 +02:00
|
|
|
|
2012-01-09 17:17:31 +01:00
|
|
|
}
|
|
|
|
|
2013-05-20 12:18:07 +02:00
|
|
|
/**
|
2013-11-29 05:12:47 +01:00
|
|
|
* @package forms
|
2013-05-20 12:18:07 +02:00
|
|
|
* @subpackage fields-gridfield
|
|
|
|
*/
|
2012-03-12 09:55:33 +01:00
|
|
|
class GridFieldDetailForm_ItemRequest extends RequestHandler {
|
2013-06-20 11:40:55 +02:00
|
|
|
|
|
|
|
private static $allowed_actions = array(
|
|
|
|
'edit',
|
|
|
|
'view',
|
|
|
|
'ItemEditForm'
|
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-01-25 05:31:27 +01:00
|
|
|
/**
|
|
|
|
*
|
2014-08-15 08:53:05 +02:00
|
|
|
* @var GridField
|
2012-01-25 05:31:27 +01:00
|
|
|
*/
|
2012-01-09 17:17:31 +01:00
|
|
|
protected $gridField;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-01-25 05:31:27 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @var GridField_URLHandler
|
|
|
|
*/
|
2012-01-09 17:17:31 +01:00
|
|
|
protected $component;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-01-25 05:31:27 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @var DataObject
|
|
|
|
*/
|
2012-01-09 17:17:31 +01:00
|
|
|
protected $record;
|
|
|
|
|
2012-01-25 05:31:27 +01:00
|
|
|
/**
|
2014-06-12 05:31:03 +02:00
|
|
|
* This represents the current parent RequestHandler (which does not necessarily need to be a Controller).
|
|
|
|
* It allows us to traverse the RequestHandler chain upwards to reach the Controller stack.
|
2012-01-25 05:31:27 +01:00
|
|
|
*
|
2014-06-12 05:31:03 +02:00
|
|
|
* @var RequestHandler
|
2012-01-25 05:31:27 +01:00
|
|
|
*/
|
|
|
|
protected $popupController;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-01-25 05:31:27 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $popupFormName;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-01-09 17:17:31 +01:00
|
|
|
/**
|
|
|
|
* @var String
|
|
|
|
*/
|
|
|
|
protected $template = 'GridFieldItemEditView';
|
|
|
|
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $url_handlers = array(
|
2012-01-09 17:17:31 +01:00
|
|
|
'$Action!' => '$Action',
|
2012-01-25 05:31:27 +01:00
|
|
|
'' => 'edit',
|
2012-01-09 17:17:31 +01:00
|
|
|
);
|
2014-06-12 05:31:03 +02:00
|
|
|
|
2012-01-25 05:31:27 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param GridFIeld $gridField
|
|
|
|
* @param GridField_URLHandler $component
|
|
|
|
* @param DataObject $record
|
2014-06-12 05:31:03 +02:00
|
|
|
* @param RequestHandler $requestHandler
|
|
|
|
* @param string $popupFormName
|
2012-01-25 05:31:27 +01:00
|
|
|
*/
|
2014-06-12 05:31:03 +02:00
|
|
|
public function __construct($gridField, $component, $record, $requestHandler, $popupFormName) {
|
2012-01-09 17:17:31 +01:00
|
|
|
$this->gridField = $gridField;
|
2012-03-05 16:59:24 +01:00
|
|
|
$this->component = $component;
|
2012-01-09 17:17:31 +01:00
|
|
|
$this->record = $record;
|
2014-06-12 05:31:03 +02:00
|
|
|
$this->popupController = $requestHandler;
|
2012-01-25 05:31:27 +01:00
|
|
|
$this->popupFormName = $popupFormName;
|
2012-01-09 17:17:31 +01:00
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
2012-01-25 05:31:27 +01:00
|
|
|
public function Link($action = null) {
|
2012-09-26 23:34:00 +02:00
|
|
|
return Controller::join_links($this->gridField->Link('item'),
|
|
|
|
$this->record->ID ? $this->record->ID : 'new', $action);
|
2012-01-09 17:17:31 +01:00
|
|
|
}
|
2012-05-11 09:44:39 +02:00
|
|
|
|
|
|
|
public function view($request) {
|
|
|
|
if(!$this->record->canView()) {
|
|
|
|
$this->httpError(403);
|
|
|
|
}
|
|
|
|
|
|
|
|
$controller = $this->getToplevelController();
|
|
|
|
|
|
|
|
$form = $this->ItemEditForm($this->gridField, $request);
|
|
|
|
$form->makeReadonly();
|
|
|
|
|
|
|
|
$data = new ArrayData(array(
|
|
|
|
'Backlink' => $controller->Link(),
|
|
|
|
'ItemEditForm' => $form
|
|
|
|
));
|
|
|
|
$return = $data->renderWith($this->template);
|
|
|
|
|
|
|
|
if($request->isAjax()) {
|
|
|
|
return $return;
|
|
|
|
} else {
|
|
|
|
return $controller->customise(array('Content' => $return));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function edit($request) {
|
2012-03-07 01:17:51 +01:00
|
|
|
$controller = $this->getToplevelController();
|
2012-02-27 17:43:32 +01:00
|
|
|
$form = $this->ItemEditForm($this->gridField, $request);
|
|
|
|
|
2012-01-09 17:17:31 +01:00
|
|
|
$return = $this->customise(array(
|
2012-05-08 10:24:14 +02:00
|
|
|
'Backlink' => $controller->hasMethod('Backlink') ? $controller->Backlink() : $controller->Link(),
|
2012-03-07 01:17:51 +01:00
|
|
|
'ItemEditForm' => $form,
|
|
|
|
))->renderWith($this->template);
|
2012-01-09 17:17:31 +01:00
|
|
|
|
2012-04-05 14:44:42 +02:00
|
|
|
if($request->isAjax()) {
|
2014-08-15 08:53:05 +02:00
|
|
|
return $return;
|
2012-01-09 17:17:31 +01:00
|
|
|
} else {
|
|
|
|
// If not requested by ajax, we need to render it within the controller context+template
|
|
|
|
return $controller->customise(array(
|
2012-03-07 01:17:51 +01:00
|
|
|
// TODO CMS coupling
|
2012-02-27 17:43:32 +01:00
|
|
|
'Content' => $return,
|
2014-08-15 08:53:05 +02:00
|
|
|
));
|
2012-01-09 17:17:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-25 05:31:27 +01:00
|
|
|
/**
|
|
|
|
* Builds an item edit form. The arguments to getCMSFields() are the popupController and
|
|
|
|
* popupFormName, however this is an experimental API and may change.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2012-02-27 18:26:11 +01:00
|
|
|
* @todo In the future, we will probably need to come up with a tigher object representing a partially
|
2012-01-25 05:31:27 +01:00
|
|
|
* complete controller with gaps for extra functionality. This, for example, would be a better way
|
|
|
|
* of letting Security/login put its log-in form inside a UI specified elsewhere.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
|
|
|
* @return Form
|
2012-01-25 05:31:27 +01:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function ItemEditForm() {
|
2012-11-08 01:26:38 +01:00
|
|
|
$list = $this->gridField->getList();
|
|
|
|
|
2012-03-07 05:17:32 +01:00
|
|
|
if (empty($this->record)) {
|
2014-06-12 05:31:03 +02:00
|
|
|
$controller = $this->getToplevelController();
|
2012-03-07 05:17:32 +01:00
|
|
|
$noActionURL = $controller->removeAction($_REQUEST['url']);
|
|
|
|
$controller->getResponse()->removeHeader('Location'); //clear the existing redirect
|
2012-05-23 11:50:02 +02:00
|
|
|
return $controller->redirect($noActionURL, 302);
|
2012-03-07 05:17:32 +01:00
|
|
|
}
|
2012-03-07 04:40:59 +01:00
|
|
|
|
2012-12-17 00:46:51 +01:00
|
|
|
$canView = $this->record->canView();
|
|
|
|
$canEdit = $this->record->canEdit();
|
|
|
|
$canDelete = $this->record->canDelete();
|
|
|
|
$canCreate = $this->record->canCreate();
|
|
|
|
|
|
|
|
if(!$canView) {
|
2014-06-12 05:31:03 +02:00
|
|
|
$controller = $this->getToplevelController();
|
2012-12-17 00:46:51 +01:00
|
|
|
// TODO More friendly error
|
|
|
|
return $controller->httpError(403);
|
|
|
|
}
|
|
|
|
|
2012-03-07 06:09:21 +01:00
|
|
|
$actions = new FieldList();
|
|
|
|
if($this->record->ID !== 0) {
|
2012-12-17 00:46:51 +01:00
|
|
|
if($canEdit) {
|
|
|
|
$actions->push(FormAction::create('doSave', _t('GridFieldDetailForm.Save', 'Save'))
|
|
|
|
->setUseButtonTag(true)
|
|
|
|
->addExtraClass('ss-ui-action-constructive')
|
|
|
|
->setAttribute('data-icon', 'accept'));
|
|
|
|
}
|
2012-09-26 23:34:00 +02:00
|
|
|
|
2012-12-17 00:46:51 +01:00
|
|
|
if($canDelete) {
|
|
|
|
$actions->push(FormAction::create('doDelete', _t('GridFieldDetailForm.Delete', 'Delete'))
|
|
|
|
->setUseButtonTag(true)
|
2013-10-24 11:37:40 +02:00
|
|
|
->addExtraClass('ss-ui-action-destructive action-delete'));
|
2012-12-17 00:46:51 +01:00
|
|
|
}
|
2012-09-26 23:34:00 +02:00
|
|
|
|
2012-03-07 06:09:21 +01:00
|
|
|
}else{ // adding new record
|
|
|
|
//Change the Save label to 'Create'
|
2012-05-10 05:46:54 +02:00
|
|
|
$actions->push(FormAction::create('doSave', _t('GridFieldDetailForm.Create', 'Create'))
|
2012-09-26 23:34:00 +02:00
|
|
|
->setUseButtonTag(true)
|
|
|
|
->addExtraClass('ss-ui-action-constructive')
|
|
|
|
->setAttribute('data-icon', 'add'));
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-03-07 06:09:21 +01:00
|
|
|
// Add a Cancel link which is a button-like link and link back to one level up.
|
|
|
|
$curmbs = $this->Breadcrumbs();
|
2012-03-08 19:53:19 +01:00
|
|
|
if($curmbs && $curmbs->count()>=2){
|
2012-03-07 06:09:21 +01:00
|
|
|
$one_level_up = $curmbs->offsetGet($curmbs->count()-2);
|
2012-09-11 13:47:12 +02:00
|
|
|
$text = sprintf(
|
2012-09-26 23:34:00 +02:00
|
|
|
"<a class=\"%s\" href=\"%s\">%s</a>",
|
|
|
|
"crumb ss-ui-button ss-ui-action-destructive cms-panel-link ui-corner-all", // CSS classes
|
|
|
|
$one_level_up->Link, // url
|
|
|
|
_t('GridFieldDetailForm.CancelBtn', 'Cancel') // label
|
2012-09-11 13:47:12 +02:00
|
|
|
);
|
2012-03-07 06:09:21 +01:00
|
|
|
$actions->push(new LiteralField('cancelbutton', $text));
|
|
|
|
}
|
|
|
|
}
|
2016-02-28 08:56:10 +01:00
|
|
|
|
|
|
|
// If we are creating a new record in a has-many list, then
|
|
|
|
// pre-populate the record's foreign key.
|
|
|
|
if($list instanceof HasManyList && !$this->record->isInDB()) {
|
|
|
|
$key = $list->getForeignKey();
|
|
|
|
$id = $list->getForeignID();
|
|
|
|
$this->record->$key = $id;
|
|
|
|
}
|
2013-11-13 06:21:18 +01:00
|
|
|
|
2012-11-08 01:26:38 +01:00
|
|
|
$fields = $this->component->getFields();
|
|
|
|
if(!$fields) $fields = $this->record->getCMSFields();
|
2013-11-13 06:21:18 +01:00
|
|
|
|
|
|
|
// If we are creating a new record in a has-many list, then
|
2016-02-28 08:56:10 +01:00
|
|
|
// Disable the form field as it has no effect.
|
2013-11-13 06:21:18 +01:00
|
|
|
if($list instanceof HasManyList) {
|
|
|
|
$key = $list->getForeignKey();
|
|
|
|
|
|
|
|
if($field = $fields->dataFieldByName($key)) {
|
|
|
|
$fields->makeFieldReadonly($field);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-19 11:38:32 +02:00
|
|
|
// this pushes the current page ID in as a hidden field
|
|
|
|
// this means the request will have the current page ID in it
|
|
|
|
// rather than relying on session which can have been rewritten
|
|
|
|
// by the user having another tab open
|
|
|
|
// see LeftAndMain::currentPageID
|
|
|
|
if($this->controller->hasMethod('currentPageID') && $this->controller->currentPageID()) {
|
|
|
|
$fields->push(new HiddenField('CMSMainCurrentPageID', null, $this->controller->currentPageID()));
|
|
|
|
}
|
2014-06-12 05:31:03 +02:00
|
|
|
// Caution: API violation. Form expects a Controller, but we are giving it a RequestHandler instead.
|
|
|
|
// Thanks to this however, we are able to nest GridFields, and also access the initial Controller by
|
|
|
|
// dereferencing GridFieldDetailForm_ItemRequest->getController() multiple times. See getToplevelController
|
|
|
|
// below.
|
2012-01-09 17:17:31 +01:00
|
|
|
$form = new Form(
|
|
|
|
$this,
|
|
|
|
'ItemEditForm',
|
2012-11-08 01:26:38 +01:00
|
|
|
$fields,
|
2012-03-07 06:09:21 +01:00
|
|
|
$actions,
|
2012-03-05 17:05:40 +01:00
|
|
|
$this->component->getValidator()
|
2012-01-09 17:17:31 +01:00
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-11-15 23:48:31 +01:00
|
|
|
$form->loadDataFrom($this->record, $this->record->ID == 0 ? Form::MERGE_IGNORE_FALSEISH : Form::MERGE_DEFAULT);
|
2012-03-05 16:59:24 +01:00
|
|
|
|
2012-12-17 00:46:51 +01:00
|
|
|
if($this->record->ID && !$canEdit) {
|
2013-01-24 07:56:02 +01:00
|
|
|
// Restrict editing of existing records
|
|
|
|
$form->makeReadonly();
|
2013-06-03 13:31:40 +02:00
|
|
|
// Hack to re-enable delete button if user can delete
|
|
|
|
if ($canDelete) {
|
|
|
|
$form->Actions()->fieldByName('action_doDelete')->setReadonly(false);
|
|
|
|
}
|
2012-12-17 00:46:51 +01:00
|
|
|
} elseif(!$this->record->ID && !$canCreate) {
|
2013-01-24 07:56:02 +01:00
|
|
|
// Restrict creation of new records
|
|
|
|
$form->makeReadonly();
|
2012-12-17 00:46:51 +01:00
|
|
|
}
|
|
|
|
|
2012-11-08 01:26:38 +01:00
|
|
|
// Load many_many extraData for record.
|
|
|
|
// Fields with the correct 'ManyMany' namespace need to be added manually through getCMSFields().
|
|
|
|
if($list instanceof ManyManyList) {
|
|
|
|
$extraData = $list->getExtraData('', $this->record->ID);
|
|
|
|
$form->loadDataFrom(array('ManyMany' => $extraData));
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-03-05 16:59:24 +01:00
|
|
|
// TODO Coupling with CMS
|
2012-03-07 01:17:51 +01:00
|
|
|
$toplevelController = $this->getToplevelController();
|
|
|
|
if($toplevelController && $toplevelController instanceof LeftAndMain) {
|
2014-08-15 08:53:05 +02:00
|
|
|
// Always show with base template (full width, no other panels),
|
2012-03-07 16:23:02 +01:00
|
|
|
// regardless of overloaded CMS controller templates.
|
|
|
|
// TODO Allow customization, e.g. to display an edit form alongside a search form from the CMS controller
|
|
|
|
$form->setTemplate('LeftAndMain_EditForm');
|
2012-08-27 04:18:54 +02:00
|
|
|
$form->addExtraClass('cms-content cms-edit-form center');
|
2012-04-18 22:11:40 +02:00
|
|
|
$form->setAttribute('data-pjax-fragment', 'CurrentForm Content');
|
2012-08-27 04:18:54 +02:00
|
|
|
if($form->Fields()->hasTabset()) {
|
|
|
|
$form->Fields()->findOrMakeTab('Root')->setTemplate('CMSTabSet');
|
2012-10-31 15:57:48 +01:00
|
|
|
$form->addExtraClass('cms-tabset');
|
2012-07-05 21:53:40 +02:00
|
|
|
}
|
2012-10-07 22:18:13 +02:00
|
|
|
|
|
|
|
$form->Backlink = $this->getBackLink();
|
2012-03-05 16:59:24 +01:00
|
|
|
}
|
2012-04-30 13:46:51 +02:00
|
|
|
|
|
|
|
$cb = $this->component->getItemEditFormCallback();
|
|
|
|
if($cb) $cb($form, $this);
|
2012-12-27 07:22:54 +01:00
|
|
|
$this->extend("updateItemEditForm", $form);
|
2012-01-09 17:17:31 +01:00
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
2012-03-07 01:17:51 +01:00
|
|
|
/**
|
2014-06-12 05:31:03 +02:00
|
|
|
* Traverse the nested RequestHandlers until we reach something that's not GridFieldDetailForm_ItemRequest.
|
|
|
|
* This allows us to access the Controller responsible for invoking the top-level GridField.
|
|
|
|
* This should be equivalent to getting the controller off the top of the controller stack via Controller::curr(),
|
|
|
|
* but allows us to avoid accessing the global state.
|
|
|
|
*
|
|
|
|
* GridFieldDetailForm_ItemRequests are RequestHandlers, and as such they are not part of the controller stack.
|
|
|
|
*
|
2012-03-07 01:17:51 +01:00
|
|
|
* @return Controller
|
|
|
|
*/
|
|
|
|
protected function getToplevelController() {
|
|
|
|
$c = $this->popupController;
|
2012-03-12 09:55:33 +01:00
|
|
|
while($c && $c instanceof GridFieldDetailForm_ItemRequest) {
|
2012-03-07 01:17:51 +01:00
|
|
|
$c = $c->getController();
|
|
|
|
}
|
|
|
|
return $c;
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-10-07 22:18:13 +02:00
|
|
|
protected function getBackLink(){
|
|
|
|
// TODO Coupling with CMS
|
|
|
|
$backlink = '';
|
|
|
|
$toplevelController = $this->getToplevelController();
|
|
|
|
if($toplevelController && $toplevelController instanceof LeftAndMain) {
|
|
|
|
if($toplevelController->hasMethod('Backlink')) {
|
|
|
|
$backlink = $toplevelController->Backlink();
|
|
|
|
} elseif($this->popupController->hasMethod('Breadcrumbs')) {
|
|
|
|
$parents = $this->popupController->Breadcrumbs(false)->items;
|
|
|
|
$backlink = array_pop($parents)->Link;
|
2014-08-15 08:53:05 +02:00
|
|
|
}
|
2012-10-07 22:18:13 +02:00
|
|
|
}
|
2012-11-09 23:05:06 +01:00
|
|
|
if(!$backlink) $backlink = $toplevelController->Link();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-10-07 22:18:13 +02:00
|
|
|
return $backlink;
|
|
|
|
}
|
2016-01-06 00:34:58 +01:00
|
|
|
|
2015-06-08 05:44:27 +02:00
|
|
|
/**
|
|
|
|
* Get the list of extra data from the $record as saved into it by
|
|
|
|
* {@see Form::saveInto()}
|
2016-01-06 00:34:58 +01:00
|
|
|
*
|
2015-06-08 05:44:27 +02:00
|
|
|
* Handles detection of falsey values explicitly saved into the
|
|
|
|
* DataObject by formfields
|
2016-01-06 00:34:58 +01:00
|
|
|
*
|
2015-06-08 05:44:27 +02:00
|
|
|
* @param DataObject $record
|
|
|
|
* @param SS_List $list
|
|
|
|
* @return array List of data to write to the relation
|
|
|
|
*/
|
|
|
|
protected function getExtraSavedData($record, $list) {
|
|
|
|
// Skip extra data if not ManyManyList
|
|
|
|
if(!($list instanceof ManyManyList)) {
|
|
|
|
return null;
|
|
|
|
}
|
2016-01-06 00:34:58 +01:00
|
|
|
|
2015-06-08 05:44:27 +02:00
|
|
|
$data = array();
|
|
|
|
foreach($list->getExtraFields() as $field => $dbSpec) {
|
|
|
|
$savedField = "ManyMany[{$field}]";
|
|
|
|
if($record->hasField($savedField)) {
|
|
|
|
$data[$field] = $record->getField($savedField);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $data;
|
|
|
|
}
|
2012-03-07 01:17:51 +01:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function doSave($data, $form) {
|
2012-02-20 02:50:53 +01:00
|
|
|
$new_record = $this->record->ID == 0;
|
2014-06-12 05:31:03 +02:00
|
|
|
$controller = $this->getToplevelController();
|
2012-11-08 01:26:38 +01:00
|
|
|
$list = $this->gridField->getList();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-12-17 00:46:51 +01:00
|
|
|
if(!$this->record->canEdit()) {
|
|
|
|
return $controller->httpError(403);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-04-02 04:09:52 +02:00
|
|
|
if (isset($data['ClassName']) && $data['ClassName'] != $this->record->ClassName) {
|
|
|
|
$newClassName = $data['ClassName'];
|
|
|
|
// The records originally saved attribute was overwritten by $form->saveInto($record) before.
|
|
|
|
// This is necessary for newClassInstance() to work as expected, and trigger change detection
|
|
|
|
// on the ClassName attribute
|
|
|
|
$this->record->setClassName($this->record->ClassName);
|
|
|
|
// Replace $record with a new instance
|
|
|
|
$this->record = $this->record->newClassInstance($newClassName);
|
|
|
|
}
|
2012-12-17 00:46:51 +01:00
|
|
|
|
2012-01-09 17:17:31 +01:00
|
|
|
try {
|
|
|
|
$form->saveInto($this->record);
|
|
|
|
$this->record->write();
|
2015-06-08 05:44:27 +02:00
|
|
|
$extraData = $this->getExtraSavedData($this->record, $list);
|
2012-11-08 01:26:38 +01:00
|
|
|
$list->add($this->record, $extraData);
|
2012-01-09 17:17:31 +01:00
|
|
|
} catch(ValidationException $e) {
|
2014-01-30 22:38:34 +01:00
|
|
|
$form->sessionMessage($e->getResult()->message(), 'bad', false);
|
2016-07-13 11:34:02 +02:00
|
|
|
if ($controller->getRequest()->isAjax()) {
|
|
|
|
$responseNegotiator = new PjaxResponseNegotiator(array(
|
|
|
|
'CurrentForm' => function () use (&$form) {
|
|
|
|
return $form->forTemplate();
|
|
|
|
},
|
|
|
|
));
|
2012-08-24 01:18:16 +02:00
|
|
|
$controller->getRequest()->addHeader('X-Pjax', 'CurrentForm');
|
2016-07-13 11:34:02 +02:00
|
|
|
return $responseNegotiator->respond($controller->getRequest());
|
2012-08-24 01:18:16 +02:00
|
|
|
}
|
2016-07-13 11:34:02 +02:00
|
|
|
Session::set("FormInfo.{$form->FormName()}.errors", array());
|
|
|
|
Session::set("FormInfo.{$form->FormName()}.data", $form->getData());
|
|
|
|
return $controller->redirectBack();
|
2012-01-09 17:17:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO Save this item into the given relationship
|
|
|
|
|
2016-01-06 00:34:58 +01:00
|
|
|
$link = '<a href="' . $this->Link('edit') . '">"'
|
|
|
|
. htmlspecialchars($this->record->Title, ENT_QUOTES)
|
2014-01-30 22:38:34 +01:00
|
|
|
. '"</a>';
|
2012-12-21 11:18:51 +01:00
|
|
|
$message = _t(
|
2014-08-15 08:53:05 +02:00
|
|
|
'GridFieldDetailForm.Saved',
|
2012-12-21 11:18:51 +01:00
|
|
|
'Saved {name} {link}',
|
|
|
|
array(
|
2013-01-11 15:50:09 +01:00
|
|
|
'name' => $this->record->i18n_singular_name(),
|
2012-12-21 11:18:51 +01:00
|
|
|
'link' => $link
|
|
|
|
)
|
2012-01-09 17:17:31 +01:00
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-30 22:38:34 +01:00
|
|
|
$form->sessionMessage($message, 'good', false);
|
2012-01-09 17:17:31 +01:00
|
|
|
|
2012-08-20 15:08:30 +02:00
|
|
|
if($new_record) {
|
2014-06-12 05:31:03 +02:00
|
|
|
return $controller->redirect($this->Link());
|
2012-09-02 16:57:50 +02:00
|
|
|
} elseif($this->gridField->getList()->byId($this->record->ID)) {
|
2012-08-20 15:08:30 +02:00
|
|
|
// Return new view, as we can't do a "virtual redirect" via the CMS Ajax
|
|
|
|
// to the same URL (it assumes that its content is already current, and doesn't reload)
|
2014-06-12 05:31:03 +02:00
|
|
|
return $this->edit($controller->getRequest());
|
2012-09-02 16:57:50 +02:00
|
|
|
} else {
|
|
|
|
// Changes to the record properties might've excluded the record from
|
|
|
|
// a filtered list, so return back to the main view if it can't be found
|
|
|
|
$noActionURL = $controller->removeAction($data['url']);
|
2014-08-15 08:53:05 +02:00
|
|
|
$controller->getRequest()->addHeader('X-Pjax', 'Content');
|
|
|
|
return $controller->redirect($noActionURL, 302);
|
2012-08-20 15:08:30 +02:00
|
|
|
}
|
2012-01-09 17:17:31 +01:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function doDelete($data, $form) {
|
2012-10-07 22:18:13 +02:00
|
|
|
$title = $this->record->Title;
|
2016-07-29 00:51:53 +02:00
|
|
|
$backLink = $this->getBacklink();
|
2012-02-27 05:27:03 +01:00
|
|
|
try {
|
2012-10-07 22:18:13 +02:00
|
|
|
if (!$this->record->canDelete()) {
|
2012-09-26 23:34:00 +02:00
|
|
|
throw new ValidationException(
|
|
|
|
_t('GridFieldDetailForm.DeletePermissionsFailure',"No delete permissions"),0);
|
2012-02-27 05:27:03 +01:00
|
|
|
}
|
|
|
|
|
2012-10-07 22:18:13 +02:00
|
|
|
$this->record->delete();
|
2012-02-27 05:27:03 +01:00
|
|
|
} catch(ValidationException $e) {
|
2014-01-30 22:38:34 +01:00
|
|
|
$form->sessionMessage($e->getResult()->message(), 'bad', false);
|
2014-06-12 05:31:03 +02:00
|
|
|
return $this->getToplevelController()->redirectBack();
|
2012-02-27 05:27:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$message = sprintf(
|
2012-05-10 05:46:54 +02:00
|
|
|
_t('GridFieldDetailForm.Deleted', 'Deleted %s %s'),
|
2013-01-11 15:50:09 +01:00
|
|
|
$this->record->i18n_singular_name(),
|
2012-10-07 22:18:13 +02:00
|
|
|
htmlspecialchars($title, ENT_QUOTES)
|
2012-02-27 05:27:03 +01:00
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-10-07 22:18:13 +02:00
|
|
|
$toplevelController = $this->getToplevelController();
|
|
|
|
if($toplevelController && $toplevelController instanceof LeftAndMain) {
|
|
|
|
$backForm = $toplevelController->getEditForm();
|
2014-01-30 22:38:34 +01:00
|
|
|
$backForm->sessionMessage($message, 'good', false);
|
2012-10-07 22:18:13 +02:00
|
|
|
} else {
|
2014-01-30 22:38:34 +01:00
|
|
|
$form->sessionMessage($message, 'good', false);
|
2012-10-07 22:18:13 +02:00
|
|
|
}
|
2012-02-27 05:27:03 +01:00
|
|
|
|
2012-10-07 22:18:13 +02:00
|
|
|
//when an item is deleted, redirect to the parent controller
|
2014-06-12 05:31:03 +02:00
|
|
|
$controller = $this->getToplevelController();
|
2012-05-29 11:34:47 +02:00
|
|
|
$controller->getRequest()->addHeader('X-Pjax', 'Content'); // Force a content refresh
|
2012-02-27 05:27:03 +01:00
|
|
|
|
2016-07-29 00:51:53 +02:00
|
|
|
return $controller->redirect($backLink, 302); //redirect back to admin section
|
2012-02-27 05:27:03 +01:00
|
|
|
}
|
|
|
|
|
2012-01-09 17:17:31 +01:00
|
|
|
/**
|
|
|
|
* @param String
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function setTemplate($template) {
|
2012-01-09 17:17:31 +01:00
|
|
|
$this->template = $template;
|
2012-03-05 17:05:40 +01:00
|
|
|
return $this;
|
2012-01-09 17:17:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return String
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function getTemplate() {
|
2012-01-09 17:17:31 +01:00
|
|
|
return $this->template;
|
|
|
|
}
|
2012-02-28 18:48:33 +01:00
|
|
|
|
2012-03-07 01:17:51 +01:00
|
|
|
/**
|
|
|
|
* @return Controller
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function getController() {
|
2012-03-07 01:17:51 +01:00
|
|
|
return $this->popupController;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return GridField
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function getGridField() {
|
2012-03-07 01:17:51 +01:00
|
|
|
return $this->gridField;
|
|
|
|
}
|
|
|
|
|
2014-05-07 13:35:52 +02:00
|
|
|
/**
|
|
|
|
* @return DataObject
|
|
|
|
*/
|
|
|
|
public function getRecord() {
|
|
|
|
return $this->record;
|
|
|
|
}
|
|
|
|
|
2012-02-28 18:48:33 +01:00
|
|
|
/**
|
|
|
|
* CMS-specific functionality: Passes through navigation breadcrumbs
|
|
|
|
* to the template, and includes the currently edited record (if any).
|
|
|
|
* see {@link LeftAndMain->Breadcrumbs()} for details.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
|
|
|
* @param boolean $unlinked
|
2012-02-28 18:48:33 +01:00
|
|
|
* @return ArrayData
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function Breadcrumbs($unlinked = false) {
|
2012-03-08 19:53:19 +01:00
|
|
|
if(!$this->popupController->hasMethod('Breadcrumbs')) return;
|
2012-02-28 18:48:33 +01:00
|
|
|
|
|
|
|
$items = $this->popupController->Breadcrumbs($unlinked);
|
2012-03-05 18:21:08 +01:00
|
|
|
if($this->record && $this->record->ID) {
|
2016-03-30 07:46:18 +02:00
|
|
|
$title = ($this->record->Title) ? $this->record->Title : "#{$this->record->ID}";
|
2012-02-28 18:48:33 +01:00
|
|
|
$items->push(new ArrayData(array(
|
2016-03-30 07:46:18 +02:00
|
|
|
'Title' => $title,
|
2012-03-07 01:17:51 +01:00
|
|
|
'Link' => $this->Link()
|
2014-08-15 08:53:05 +02:00
|
|
|
)));
|
2012-03-05 18:21:08 +01:00
|
|
|
} else {
|
|
|
|
$items->push(new ArrayData(array(
|
2012-08-09 23:46:40 +02:00
|
|
|
'Title' => sprintf(_t('GridField.NewRecord', 'New %s'), $this->record->i18n_singular_name()),
|
2012-02-28 18:48:33 +01:00
|
|
|
'Link' => false
|
2014-08-15 08:53:05 +02:00
|
|
|
)));
|
2012-02-28 18:48:33 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-02-28 18:48:33 +01:00
|
|
|
return $items;
|
|
|
|
}
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|