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