‪TYPO3CMS  ‪main
DatabaseUniqueUidNewRow.php
Go to the documentation of this file.
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 
17 
20 
25 {
32  public function ‪addData(array $result)
33  {
34  if ($result['command'] !== 'new') {
35  return $result;
36  }
37  // Throw exception if uid is already set and does not start with NEW.
38  // In some situations a new record needs to be created again so the initialization of default
39  // values is triggered, but the "ID" of the new record is already known: This is the case if a
40  // new section container element is added by FormFlexAjaxController to a not yet persisted record.
41  // In this case, command "new" is given to the data compiler, but the "NEW1234" id has been calculated
42  // by the former compiler when opening the record already. The ajax controller then hands in the
43  // "new" command together with the id calculated by the first call.
44  if (isset($result['databaseRow']['uid']) && !str_starts_with($result['databaseRow']['uid'], 'NEW')) {
45  throw new \InvalidArgumentException(
46  'uid is already set to ' . $result['databaseRow']['uid'] . ' and does not start with NEW for a "new" command',
47  1437991120
48  );
49  }
50  if (!isset($result['databaseRow']['uid'])) {
51  $result['databaseRow']['uid'] = ‪StringUtility::getUniqueId('NEW');
52  }
53 
54  return $result;
55  }
56 }
‪TYPO3\CMS\Backend\Form\FormDataProvider\DatabaseUniqueUidNewRow\addData
‪array addData(array $result)
Definition: DatabaseUniqueUidNewRow.php:32
‪TYPO3\CMS\Backend\Form\FormDataProvider
Definition: AbstractDatabaseRecordProvider.php:16
‪TYPO3\CMS\Backend\Form\FormDataProviderInterface
Definition: FormDataProviderInterface.php:23
‪TYPO3\CMS\Backend\Form\FormDataProvider\DatabaseUniqueUidNewRow
Definition: DatabaseUniqueUidNewRow.php:25
‪TYPO3\CMS\Core\Utility\StringUtility
Definition: StringUtility.php:24
‪TYPO3\CMS\Core\Utility\StringUtility\getUniqueId
‪static getUniqueId(string $prefix='')
Definition: StringUtility.php:57