Passed
Pull Request — 4.4 (#8952)
by Guy
07:00
created

getRightGroupField()   B

Complexity

Conditions 6
Paths 4

Size

Total Lines 38
Code Lines 27

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 6
eloc 27
nc 4
nop 0
dl 0
loc 38
rs 8.8657
c 0
b 0
f 0
1
<?php
2
3
namespace SilverStripe\Forms\GridField;
4
5
use SilverStripe\Admin\LeftAndMain;
0 ignored issues
show
Bug introduced by
The type SilverStripe\Admin\LeftAndMain was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
6
use SilverStripe\Control\Controller;
7
use SilverStripe\Control\HTTPRequest;
8
use SilverStripe\Control\HTTPResponse;
9
use SilverStripe\Control\RequestHandler;
10
use SilverStripe\Core\Config\Config;
11
use SilverStripe\Forms\CompositeField;
12
use SilverStripe\Forms\FieldList;
13
use SilverStripe\Forms\Form;
14
use SilverStripe\Forms\FormAction;
15
use SilverStripe\Forms\HiddenField;
16
use SilverStripe\Forms\LiteralField;
17
use SilverStripe\ORM\ArrayList;
18
use SilverStripe\ORM\DataObject;
19
use SilverStripe\ORM\FieldType\DBHTMLText;
20
use SilverStripe\ORM\HasManyList;
21
use SilverStripe\ORM\ManyManyList;
22
use SilverStripe\ORM\SS_List;
23
use SilverStripe\ORM\ValidationException;
24
use SilverStripe\ORM\ValidationResult;
25
use SilverStripe\View\ArrayData;
26
use SilverStripe\View\SSViewer;
27
28
class GridFieldDetailForm_ItemRequest extends RequestHandler
29
{
30
31
    private static $allowed_actions = array(
32
        'edit',
33
        'view',
34
        'ItemEditForm'
35
    );
36
37
    /**
38
     *
39
     * @var GridField
40
     */
41
    protected $gridField;
42
43
    /**
44
     *
45
     * @var GridFieldDetailForm
46
     */
47
    protected $component;
48
49
    /**
50
     * @var DataObject
51
     */
52
    protected $record;
53
54
    /**
55
     * This represents the current parent RequestHandler (which does not necessarily need to be a Controller).
56
     * It allows us to traverse the RequestHandler chain upwards to reach the Controller stack.
57
     *
58
     * @var RequestHandler
59
     */
60
    protected $popupController;
61
62
    /**
63
     *
64
     * @var string
65
     */
66
    protected $popupFormName;
67
68
    /**
69
     * @var String
70
     */
71
    protected $template = null;
72
73
    private static $url_handlers = array(
74
        '$Action!' => '$Action',
75
        '' => 'edit',
76
    );
77
78
    /**
79
     *
80
     * @param GridField $gridField
81
     * @param GridFieldDetailForm $component
82
     * @param DataObject $record
83
     * @param RequestHandler $requestHandler
84
     * @param string $popupFormName
85
     */
86
    public function __construct($gridField, $component, $record, $requestHandler, $popupFormName)
87
    {
88
        $this->gridField = $gridField;
89
        $this->component = $component;
90
        $this->record = $record;
91
        $this->popupController = $requestHandler;
92
        $this->popupFormName = $popupFormName;
93
        parent::__construct();
94
    }
95
96
    public function Link($action = null)
97
    {
98
        return Controller::join_links(
99
            $this->gridField->Link('item'),
100
            $this->record->ID ? $this->record->ID : 'new',
101
            $action
102
        );
103
    }
104
105
    /**
106
     * @param HTTPRequest $request
107
     * @return mixed
108
     */
109
    public function view($request)
110
    {
111
        if (!$this->record->canView()) {
112
            $this->httpError(403);
113
        }
114
115
        $controller = $this->getToplevelController();
116
117
        $form = $this->ItemEditForm();
118
        $form->makeReadonly();
0 ignored issues
show
Bug introduced by
The method makeReadonly() does not exist on SilverStripe\Control\HTTPResponse. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

118
        $form->/** @scrutinizer ignore-call */ 
119
               makeReadonly();

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
119
120
        $data = new ArrayData(array(
121
            'Backlink'     => $controller->Link(),
122
            'ItemEditForm' => $form
123
        ));
124
        $return = $data->renderWith($this->getTemplates());
125
126
        if ($request->isAjax()) {
127
            return $return;
128
        } else {
129
            return $controller->customise(array('Content' => $return));
130
        }
131
    }
132
133
    /**
134
     * @param HTTPRequest $request
135
     * @return mixed
136
     */
137
    public function edit($request)
138
    {
139
        $controller = $this->getToplevelController();
140
        $form = $this->ItemEditForm();
141
142
        $return = $this->customise(array(
143
            'Backlink' => $controller->hasMethod('Backlink') ? $controller->Backlink() : $controller->Link(),
0 ignored issues
show
Bug introduced by
The method Backlink() does not exist on SilverStripe\Control\Controller. Since you implemented __call, consider adding a @method annotation. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

143
            'Backlink' => $controller->hasMethod('Backlink') ? $controller->/** @scrutinizer ignore-call */ Backlink() : $controller->Link(),
Loading history...
144
            'ItemEditForm' => $form,
145
        ))->renderWith($this->getTemplates());
146
147
        if ($request->isAjax()) {
148
            return $return;
149
        } else {
150
            // If not requested by ajax, we need to render it within the controller context+template
151
            return $controller->customise(array(
152
                // TODO CMS coupling
153
                'Content' => $return,
154
            ));
155
        }
156
    }
157
158
    /**
159
     * Builds an item edit form.  The arguments to getCMSFields() are the popupController and
160
     * popupFormName, however this is an experimental API and may change.
161
     *
162
     * @todo In the future, we will probably need to come up with a tigher object representing a partially
163
     * complete controller with gaps for extra functionality.  This, for example, would be a better way
164
     * of letting Security/login put its log-in form inside a UI specified elsewhere.
165
     *
166
     * @return Form|HTTPResponse
167
     */
168
    public function ItemEditForm()
169
    {
170
        $list = $this->gridField->getList();
171
172
        if (empty($this->record)) {
173
            $controller = $this->getToplevelController();
174
            $url = $controller->getRequest()->getURL();
175
            $noActionURL = $controller->removeAction($url);
176
            $controller->getResponse()->removeHeader('Location');   //clear the existing redirect
177
            return $controller->redirect($noActionURL, 302);
178
        }
179
180
        $canView = $this->record->canView();
181
        $canEdit = $this->record->canEdit();
182
        $canDelete = $this->record->canDelete();
183
        $canCreate = $this->record->canCreate();
184
185
        if (!$canView) {
186
            $controller = $this->getToplevelController();
187
            // TODO More friendly error
188
            return $controller->httpError(403);
189
        }
190
191
        // Build actions
192
        $actions = $this->getFormActions();
193
194
        // If we are creating a new record in a has-many list, then
195
        // pre-populate the record's foreign key.
196
        if ($list instanceof HasManyList && !$this->record->isInDB()) {
197
            $key = $list->getForeignKey();
198
            $id = $list->getForeignID();
199
            $this->record->$key = $id;
200
        }
201
202
        $fields = $this->component->getFields();
203
        if (!$fields) {
0 ignored issues
show
introduced by
$fields is of type SilverStripe\Forms\FieldList, thus it always evaluated to true.
Loading history...
204
            $fields = $this->record->getCMSFields();
205
        }
206
207
        // If we are creating a new record in a has-many list, then
208
        // Disable the form field as it has no effect.
209
        if ($list instanceof HasManyList) {
210
            $key = $list->getForeignKey();
211
212
            if ($field = $fields->dataFieldByName($key)) {
213
                $fields->makeFieldReadonly($field);
214
            }
215
        }
216
217
        $form = new Form(
218
            $this,
219
            'ItemEditForm',
220
            $fields,
221
            $actions,
222
            $this->component->getValidator()
223
        );
224
225
        $form->loadDataFrom($this->record, $this->record->ID == 0 ? Form::MERGE_IGNORE_FALSEISH : Form::MERGE_DEFAULT);
226
227
        if ($this->record->ID && !$canEdit) {
228
            // Restrict editing of existing records
229
            $form->makeReadonly();
230
            // Hack to re-enable delete button if user can delete
231
            if ($canDelete) {
232
                $form->Actions()->fieldByName('action_doDelete')->setReadonly(false);
233
            }
234
        } elseif (!$this->record->ID && !$canCreate) {
235
            // Restrict creation of new records
236
            $form->makeReadonly();
237
        }
238
239
        // Load many_many extraData for record.
240
        // Fields with the correct 'ManyMany' namespace need to be added manually through getCMSFields().
241
        if ($list instanceof ManyManyList) {
242
            $extraData = $list->getExtraData('', $this->record->ID);
243
            $form->loadDataFrom(array('ManyMany' => $extraData));
244
        }
245
246
        // TODO Coupling with CMS
247
        $toplevelController = $this->getToplevelController();
248
        if ($toplevelController && $toplevelController instanceof LeftAndMain) {
249
            // Always show with base template (full width, no other panels),
250
            // regardless of overloaded CMS controller templates.
251
            // TODO Allow customization, e.g. to display an edit form alongside a search form from the CMS controller
252
            $form->setTemplate([
253
                'type' => 'Includes',
254
                'SilverStripe\\Admin\\LeftAndMain_EditForm',
255
            ]);
256
            $form->addExtraClass('cms-content cms-edit-form center fill-height flexbox-area-grow');
257
            $form->setAttribute('data-pjax-fragment', 'CurrentForm Content');
258
            if ($form->Fields()->hasTabSet()) {
259
                $form->Fields()->findOrMakeTab('Root')->setTemplate('SilverStripe\\Forms\\CMSTabSet');
260
                $form->addExtraClass('cms-tabset');
261
            }
262
263
            $form->Backlink = $this->getBackLink();
0 ignored issues
show
Bug Best Practice introduced by
The property Backlink does not exist on SilverStripe\Forms\Form. Since you implemented __set, consider adding a @property annotation.
Loading history...
264
        }
265
266
        $cb = $this->component->getItemEditFormCallback();
267
        if ($cb) {
0 ignored issues
show
introduced by
$cb is of type Closure, thus it always evaluated to true.
Loading history...
268
            $cb($form, $this);
269
        }
270
        $this->extend("updateItemEditForm", $form);
271
        return $form;
272
    }
273
274
    /**
275
     * @return CompositeField Returns the right aligned toolbar group field along with its FormAction's
276
     */
277
    protected function getRightGroupField()
278
    {
279
        $rightGroup = CompositeField::create()->setName('RightGroup');
280
        $rightGroup->addExtraClass('ml-auto');
281
        $rightGroup->setFieldHolderTemplate(get_class($rightGroup) . '_holder_buttongroup');
282
283
        $previousAndNextGroup = CompositeField::create()->setName('PreviousAndNextGroup');
284
        $previousAndNextGroup->addExtraClass('circular-group mr-2');
285
        $previousAndNextGroup->setFieldHolderTemplate(get_class($previousAndNextGroup) . '_holder_buttongroup');
286
287
        /** @var GridFieldDetailForm $component */
288
        $component = $this->gridField->getConfig()->getComponentByType(GridFieldDetailForm::class);
289
        $paginator = $this->getGridField()->getConfig()->getComponentByType(GridFieldPaginator::class);
290
        $gridState = $this->getRequest()->requestVar('gridState');
291
        if ($component && $paginator && $component->getShowPagination()) {
0 ignored issues
show
introduced by
$paginator is of type SilverStripe\Forms\GridField\GridFieldComponent, thus it always evaluated to true.
Loading history...
292
            $previousAndNextGroup->push(FormAction::create('doPrevious')
293
                ->setUseButtonTag(true)
294
                ->setAttribute('data-grid-state', $gridState)
295
                ->setDisabled(!$this->getPreviousRecordID())
296
                ->addExtraClass('btn btn-secondary font-icon-left-open action--previous discard-confirmation'));
297
298
            $previousAndNextGroup->push(FormAction::create('doNext')
299
                ->setUseButtonTag(true)
300
                ->setAttribute('data-grid-state', $gridState)
301
                ->setDisabled(!$this->getNextRecordID())
302
                ->addExtraClass('btn btn-secondary font-icon-right-open action--next discard-confirmation'));
303
        }
304
305
        $rightGroup->push($previousAndNextGroup);
306
307
        if ($component && $component->getShowAdd()) {
308
            $rightGroup->push(FormAction::create('doNew')
309
                ->setUseButtonTag(true)
310
                ->setAttribute('data-grid-state', $this->getRequest()->getVar('gridState'))
311
                ->addExtraClass('btn btn-primary font-icon-plus-thin circular action--new discard-confirmation'));
312
        }
313
314
        return $rightGroup;
315
    }
316
317
    /**
318
     * Build the set of form field actions for this DataObject
319
     *
320
     * @return FieldList
321
     */
322
    protected function getFormActions()
323
    {
324
        $actions = new FieldList();
325
326
        if ($this->record->ID !== 0) { // existing record
327
            if ($this->record->canEdit()) {
328
                $actions->push(FormAction::create('doSave', _t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.Save', 'Save'))
329
                    ->setUseButtonTag(true)
330
                    ->addExtraClass('btn-primary font-icon-save'));
331
            }
332
333
            if ($this->record->canDelete()) {
334
                $actions->push(FormAction::create('doDelete', _t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.Delete', 'Delete'))
335
                    ->setUseButtonTag(true)
336
                    ->addExtraClass('btn-outline-danger btn-hide-outline font-icon-trash-bin action--delete'));
337
            }
338
339
            $gridState = $this->getRequest()->requestVar('gridState');
340
            $this->gridField->getState(false)->setValue($gridState);
341
            $actions->push(HiddenField::create('gridState', null, $gridState));
342
343
            $actions->push($this->getRightGroupField());
344
        } else { // adding new record
345
            //Change the Save label to 'Create'
346
            $actions->push(FormAction::create('doSave', _t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.Create', 'Create'))
347
                ->setUseButtonTag(true)
348
                ->addExtraClass('btn-primary font-icon-plus-thin'));
349
350
            // Add a Cancel link which is a button-like link and link back to one level up.
351
            $crumbs = $this->Breadcrumbs();
352
            if ($crumbs && $crumbs->count() >= 2) {
353
                $oneLevelUp = $crumbs->offsetGet($crumbs->count() - 2);
354
                $text = sprintf(
355
                    "<a class=\"%s\" href=\"%s\">%s</a>",
356
                    "crumb btn btn-secondary cms-panel-link", // CSS classes
357
                    $oneLevelUp->Link, // url
0 ignored issues
show
Bug Best Practice introduced by
The property Link does not exist on SilverStripe\ORM\DataObject. Since you implemented __get, consider adding a @property annotation.
Loading history...
358
                    _t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.CancelBtn', 'Cancel') // label
359
                );
360
                $actions->push(new LiteralField('cancelbutton', $text));
361
            }
362
        }
363
364
        $this->extend('updateFormActions', $actions);
365
366
        return $actions;
367
    }
368
369
    /**
370
     * Traverse the nested RequestHandlers until we reach something that's not GridFieldDetailForm_ItemRequest.
371
     * This allows us to access the Controller responsible for invoking the top-level GridField.
372
     * This should be equivalent to getting the controller off the top of the controller stack via Controller::curr(),
373
     * but allows us to avoid accessing the global state.
374
     *
375
     * GridFieldDetailForm_ItemRequests are RequestHandlers, and as such they are not part of the controller stack.
376
     *
377
     * @return Controller
378
     */
379
    protected function getToplevelController()
380
    {
381
        $c = $this->popupController;
382
        while ($c && $c instanceof GridFieldDetailForm_ItemRequest) {
383
            $c = $c->getController();
384
        }
385
        return $c;
386
    }
387
388
    protected function getBackLink()
389
    {
390
        // TODO Coupling with CMS
391
        $backlink = '';
392
        $toplevelController = $this->getToplevelController();
393
        if ($toplevelController && $toplevelController instanceof LeftAndMain) {
394
            if ($toplevelController->hasMethod('Backlink')) {
395
                $backlink = $toplevelController->Backlink();
396
            } elseif ($this->popupController->hasMethod('Breadcrumbs')) {
397
                $parents = $this->popupController->Breadcrumbs(false)->items;
0 ignored issues
show
Bug introduced by
The method Breadcrumbs() does not exist on SilverStripe\Control\RequestHandler. Since you implemented __call, consider adding a @method annotation. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

397
                $parents = $this->popupController->/** @scrutinizer ignore-call */ Breadcrumbs(false)->items;
Loading history...
398
                $backlink = array_pop($parents)->Link;
399
            }
400
        }
401
        if (!$backlink) {
402
            $backlink = $toplevelController->Link();
403
        }
404
405
        return $backlink;
406
    }
407
408
    /**
409
     * Get the list of extra data from the $record as saved into it by
410
     * {@see Form::saveInto()}
411
     *
412
     * Handles detection of falsey values explicitly saved into the
413
     * DataObject by formfields
414
     *
415
     * @param DataObject $record
416
     * @param SS_List $list
417
     * @return array List of data to write to the relation
418
     */
419
    protected function getExtraSavedData($record, $list)
420
    {
421
        // Skip extra data if not ManyManyList
422
        if (!($list instanceof ManyManyList)) {
423
            return null;
424
        }
425
426
        $data = array();
427
        foreach ($list->getExtraFields() as $field => $dbSpec) {
428
            $savedField = "ManyMany[{$field}]";
429
            if ($record->hasField($savedField)) {
430
                $data[$field] = $record->getField($savedField);
431
            }
432
        }
433
        return $data;
434
    }
435
436
    public function doSave($data, $form)
437
    {
438
        $isNewRecord = $this->record->ID == 0;
439
440
        // Check permission
441
        if (!$this->record->canEdit()) {
442
            return $this->httpError(403);
443
        }
444
445
        // Save from form data
446
        $this->saveFormIntoRecord($data, $form);
447
448
        $link = '<a href="' . $this->Link('edit') . '">"'
449
            . htmlspecialchars($this->record->Title, ENT_QUOTES)
450
            . '"</a>';
451
        $message = _t(
452
            'SilverStripe\\Forms\\GridField\\GridFieldDetailForm.Saved',
453
            'Saved {name} {link}',
454
            array(
455
                'name' => $this->record->i18n_singular_name(),
456
                'link' => $link
457
            )
458
        );
459
460
        $form->sessionMessage($message, 'good', ValidationResult::CAST_HTML);
461
462
        // Redirect after save
463
        return $this->redirectAfterSave($isNewRecord);
464
    }
465
466
    /**
467
     * Goes to the previous record
468
     * @param  array $data The form data
469
     * @param  Form $form The Form object
470
     * @return HTTPResponse
471
     */
472
    public function doPrevious($data, $form)
473
    {
474
        $this->getToplevelController()->getResponse()->addHeader('X-Pjax', 'Content');
475
        $link = $this->getEditLink($this->getPreviousRecordID());
476
        return $this->redirect($link);
477
    }
478
479
    /**
480
     * Goes to the next record
481
     * @param  array $data The form data
482
     * @param  Form $form The Form object
483
     * @return HTTPResponse
484
     */
485
    public function doNext($data, $form)
486
    {
487
        $this->getToplevelController()->getResponse()->addHeader('X-Pjax', 'Content');
488
        $link = $this->getEditLink($this->getNextRecordID());
489
        return $this->redirect($link);
490
    }
491
492
    /**
493
     * Creates a new record. If you're already creating a new record,
494
     * this forces the URL to change.
495
     *
496
     * @param  array $data The form data
497
     * @param  Form $form The Form object
498
     * @return HTTPResponse
499
     */
500
    public function doNew($data, $form)
501
    {
502
        return $this->redirect(Controller::join_links($this->gridField->Link('item'), 'new'));
503
    }
504
505
    /**
506
     * Gets the edit link for a record
507
     *
508
     * @param  int $id The ID of the record in the GridField
509
     * @return string
510
     */
511
    public function getEditLink($id)
512
    {
513
        return Controller::join_links(
514
            $this->gridField->Link(),
515
            'item',
516
            $id,
517
            '?gridState=' . urlencode($this->gridField->getState(false)->Value())
518
        );
519
    }
520
521
    /**
522
     * @param int $offset The offset from the current record
523
     * @return int|bool
524
     */
525
    private function getAdjacentRecordID($offset)
526
    {
527
        $gridField = $this->getGridField();
528
        $gridStateStr = $this->getRequest()->requestVar('gridState');
529
        $state = $gridField->getState(false);
530
        $state->setValue($gridStateStr);
531
        $data = $state->getData();
532
        $paginator = $data->getData('GridFieldPaginator');
533
        if (!$paginator) {
534
            return false;
535
        }
536
537
        $currentPage = $paginator->getData('currentPage');
538
        $itemsPerPage = $paginator->getData('itemsPerPage');
539
540
        $limit = $itemsPerPage + 2;
541
        $limitOffset = max(0, $itemsPerPage * ($currentPage-1) -1);
542
543
        $map = $gridField->getManipulatedList()->limit($limit, $limitOffset)->column('ID');
0 ignored issues
show
Bug introduced by
The method limit() does not exist on SilverStripe\ORM\SS_List. It seems like you code against a sub-type of said class. However, the method does not exist in SilverStripe\ORM\Sortable or SilverStripe\ORM\Filterable. Are you sure you never get one of those? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

543
        $map = $gridField->getManipulatedList()->/** @scrutinizer ignore-call */ limit($limit, $limitOffset)->column('ID');
Loading history...
544
        $index = array_search($this->record->ID, $map);
545
        return isset($map[$index+$offset]) ? $map[$index+$offset] : false;
546
    }
547
548
    /**
549
     * Gets the ID of the previous record in the list.
550
     *
551
     * @return int
552
     */
553
    public function getPreviousRecordID()
554
    {
555
        return $this->getAdjacentRecordID(-1);
556
    }
557
558
    /**
559
     * Gets the ID of the next record in the list.
560
     *
561
     * @return int
562
     */
563
    public function getNextRecordID()
564
    {
565
        return $this->getAdjacentRecordID(1);
566
    }
567
568
    /**
569
     * Response object for this request after a successful save
570
     *
571
     * @param bool $isNewRecord True if this record was just created
572
     * @return HTTPResponse|DBHTMLText
573
     */
574
    protected function redirectAfterSave($isNewRecord)
575
    {
576
        $controller = $this->getToplevelController();
577
        if ($isNewRecord) {
578
            return $controller->redirect($this->Link());
579
        } elseif ($this->gridField->getList()->byID($this->record->ID)) {
0 ignored issues
show
Bug introduced by
The method byID() does not exist on SilverStripe\ORM\SS_List. It seems like you code against a sub-type of said class. However, the method does not exist in SilverStripe\ORM\Sortable or SilverStripe\ORM\Limitable. Are you sure you never get one of those? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

579
        } elseif ($this->gridField->getList()->/** @scrutinizer ignore-call */ byID($this->record->ID)) {
Loading history...
580
            // Return new view, as we can't do a "virtual redirect" via the CMS Ajax
581
            // to the same URL (it assumes that its content is already current, and doesn't reload)
582
            return $this->edit($controller->getRequest());
583
        } else {
584
            // Changes to the record properties might've excluded the record from
585
            // a filtered list, so return back to the main view if it can't be found
586
            $url = $controller->getRequest()->getURL();
587
            $noActionURL = $controller->removeAction($url);
588
            $controller->getRequest()->addHeader('X-Pjax', 'Content');
589
            return $controller->redirect($noActionURL, 302);
590
        }
591
    }
592
593
    public function httpError($errorCode, $errorMessage = null)
594
    {
595
        $controller = $this->getToplevelController();
596
        return $controller->httpError($errorCode, $errorMessage);
597
    }
598
599
    /**
600
     * Loads the given form data into the underlying dataobject and relation
601
     *
602
     * @param array $data
603
     * @param Form $form
604
     * @throws ValidationException On error
605
     * @return DataObject Saved record
606
     */
607
    protected function saveFormIntoRecord($data, $form)
608
    {
609
        $list = $this->gridField->getList();
610
611
        // Check object matches the correct classname
612
        if (isset($data['ClassName']) && $data['ClassName'] != $this->record->ClassName) {
613
            $newClassName = $data['ClassName'];
614
            // The records originally saved attribute was overwritten by $form->saveInto($record) before.
615
            // This is necessary for newClassInstance() to work as expected, and trigger change detection
616
            // on the ClassName attribute
617
            $this->record->setClassName($this->record->ClassName);
618
            // Replace $record with a new instance
619
            $this->record = $this->record->newClassInstance($newClassName);
620
        }
621
622
        // Save form and any extra saved data into this dataobject
623
        $form->saveInto($this->record);
624
        $this->record->write();
625
        $this->extend('onAfterSave', $this->record);
626
627
        $extraData = $this->getExtraSavedData($this->record, $list);
628
        $list->add($this->record, $extraData);
0 ignored issues
show
Unused Code introduced by
The call to SilverStripe\ORM\SS_List::add() has too many arguments starting with $extraData. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

628
        $list->/** @scrutinizer ignore-call */ 
629
               add($this->record, $extraData);

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.

Loading history...
629
630
        return $this->record;
631
    }
632
633
    /**
634
     * @param array $data
635
     * @param Form $form
636
     * @return HTTPResponse
637
     * @throws ValidationException
638
     */
639
    public function doDelete($data, $form)
640
    {
641
        $title = $this->record->Title;
642
        if (!$this->record->canDelete()) {
643
            throw new ValidationException(
644
                _t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.DeletePermissionsFailure', "No delete permissions")
645
            );
646
        }
647
        $this->record->delete();
648
649
        $message = _t(
650
            'SilverStripe\\Forms\\GridField\\GridFieldDetailForm.Deleted',
651
            'Deleted {type} {name}',
652
            [
653
                'type' => $this->record->i18n_singular_name(),
654
                'name' => htmlspecialchars($title, ENT_QUOTES)
655
            ]
656
        );
657
658
        $toplevelController = $this->getToplevelController();
659
        if ($toplevelController && $toplevelController instanceof LeftAndMain) {
660
            $backForm = $toplevelController->getEditForm();
0 ignored issues
show
Bug introduced by
The method getEditForm() does not exist on SilverStripe\Control\Controller. Since you implemented __call, consider adding a @method annotation. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

660
            /** @scrutinizer ignore-call */ 
661
            $backForm = $toplevelController->getEditForm();
Loading history...
661
            $backForm->sessionMessage($message, 'good', ValidationResult::CAST_HTML);
662
        } else {
663
            $form->sessionMessage($message, 'good', ValidationResult::CAST_HTML);
664
        }
665
666
        //when an item is deleted, redirect to the parent controller
667
        $controller = $this->getToplevelController();
668
        $controller->getRequest()->addHeader('X-Pjax', 'Content'); // Force a content refresh
669
670
        return $controller->redirect($this->getBackLink(), 302); //redirect back to admin section
671
    }
672
673
    /**
674
     * @param string $template
675
     * @return $this
676
     */
677
    public function setTemplate($template)
678
    {
679
        $this->template = $template;
680
        return $this;
681
    }
682
683
    /**
684
     * @return string
685
     */
686
    public function getTemplate()
687
    {
688
        return $this->template;
689
    }
690
691
    /**
692
     * Get list of templates to use
693
     *
694
     * @return array
695
     */
696
    public function getTemplates()
697
    {
698
        $templates = SSViewer::get_templates_by_class($this, '', __CLASS__);
699
        // Prefer any custom template
700
        if ($this->getTemplate()) {
701
            array_unshift($templates, $this->getTemplate());
702
        }
703
        return $templates;
704
    }
705
706
    /**
707
     * @return Controller
708
     */
709
    public function getController()
710
    {
711
        return $this->popupController;
712
    }
713
714
    /**
715
     * @return GridField
716
     */
717
    public function getGridField()
718
    {
719
        return $this->gridField;
720
    }
721
722
    /**
723
     * @return DataObject
724
     */
725
    public function getRecord()
726
    {
727
        return $this->record;
728
    }
729
730
    /**
731
     * CMS-specific functionality: Passes through navigation breadcrumbs
732
     * to the template, and includes the currently edited record (if any).
733
     * see {@link LeftAndMain->Breadcrumbs()} for details.
734
     *
735
     * @param boolean $unlinked
736
     * @return ArrayList
737
     */
738
    public function Breadcrumbs($unlinked = false)
739
    {
740
        if (!$this->popupController->hasMethod('Breadcrumbs')) {
741
            return null;
742
        }
743
744
        /** @var ArrayList $items */
745
        $items = $this->popupController->Breadcrumbs($unlinked);
746
747
        if ($this->record && $this->record->ID) {
748
            $title = ($this->record->Title) ? $this->record->Title : "#{$this->record->ID}";
749
            $items->push(new ArrayData(array(
750
                'Title' => $title,
751
                'Link' => $this->Link()
752
            )));
753
        } else {
754
            $items->push(new ArrayData(array(
755
                'Title' => _t('SilverStripe\\Forms\\GridField\\GridField.NewRecord', 'New {type}', ['type' => $this->record->i18n_singular_name()]),
756
                'Link' => false
757
            )));
758
        }
759
760
        $this->extend('updateBreadcrumbs', $items);
761
        return $items;
762
    }
763
}
764