1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the TYPO3 CMS project. |
5
|
|
|
* |
6
|
|
|
* It is free software; you can redistribute it and/or modify it under |
7
|
|
|
* the terms of the GNU General Public License, either version 2 |
8
|
|
|
* of the License, or any later version. |
9
|
|
|
* |
10
|
|
|
* For the full copyright and license information, please read the |
11
|
|
|
* LICENSE.txt file that was distributed with this source code. |
12
|
|
|
* |
13
|
|
|
* The TYPO3 project - inspiring people to share! |
14
|
|
|
*/ |
15
|
|
|
|
16
|
|
|
namespace TYPO3\CMS\Backend\Form\FormDataProvider; |
17
|
|
|
|
18
|
|
|
use TYPO3\CMS\Backend\Form\Exception\DatabaseRecordWorkspaceDeletePlaceholderException; |
19
|
|
|
use TYPO3\CMS\Backend\Form\FormDataProviderInterface; |
20
|
|
|
use TYPO3\CMS\Backend\Utility\BackendUtility; |
21
|
|
|
use TYPO3\CMS\Core\Versioning\VersionState; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* Fetch existing database row on edit |
25
|
|
|
*/ |
26
|
|
|
class DatabaseEditRow extends AbstractDatabaseRecordProvider implements FormDataProviderInterface |
27
|
|
|
{ |
28
|
|
|
/** |
29
|
|
|
* Fetch existing record from database |
30
|
|
|
* |
31
|
|
|
* @param array $result |
32
|
|
|
* @return array |
33
|
|
|
* @throws \UnexpectedValueException |
34
|
|
|
* @throws DatabaseRecordWorkspaceDeletePlaceholderException |
35
|
|
|
*/ |
36
|
|
|
public function addData(array $result) |
37
|
|
|
{ |
38
|
|
|
if ($result['command'] !== 'edit' || !empty($result['databaseRow'])) { |
39
|
|
|
return $result; |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
$databaseRow = $this->getRecordFromDatabase($result['tableName'], $result['vanillaUid']); |
43
|
|
|
if (!array_key_exists('pid', $databaseRow)) { |
44
|
|
|
throw new \UnexpectedValueException( |
45
|
|
|
'Parent record does not have a pid field', |
46
|
|
|
1437663061 |
47
|
|
|
); |
48
|
|
|
} |
49
|
|
|
if (BackendUtility::isTableWorkspaceEnabled($result['tableName']) |
50
|
|
|
&& isset($databaseRow['t3ver_state']) |
51
|
|
|
&& VersionState::cast($databaseRow['t3ver_state'])->equals(VersionState::DELETE_PLACEHOLDER) |
52
|
|
|
) { |
53
|
|
|
// Workspace delete placeholder records (t3ver_state = 2) should never be edited. This is a fallback |
54
|
|
|
// to suppress editing in case something still links to FormEngine edit of such a record. |
55
|
|
|
throw new DatabaseRecordWorkspaceDeletePlaceholderException( |
56
|
|
|
'Record with uid "' . $databaseRow['uid'] . '" from table "' . $result['tableName'] . '" is' |
57
|
|
|
. ' a workspace delete placeholder record which can not be edited.', |
58
|
|
|
1608658396, |
59
|
|
|
$result['tableName'], |
60
|
|
|
(int)$databaseRow['uid'] |
61
|
|
|
); |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
$result['databaseRow'] = $databaseRow; |
65
|
|
|
|
66
|
|
|
return $result; |
67
|
|
|
} |
68
|
|
|
} |
69
|
|
|
|