2 namespace TYPO3\CMS\Core\DataHandling
;
5 * This file is part of the TYPO3 CMS project.
7 * It is free software; you can redistribute it and/or modify it under
8 * the terms of the GNU General Public License, either version 2
9 * of the License, or any later version.
11 * For the full copyright and license information, please read the
12 * LICENSE.txt file that was distributed with this source code.
14 * The TYPO3 project - inspiring people to share!
17 use TYPO3\CMS\Backend\Utility\BackendUtility
;
18 use TYPO3\CMS\Core\Authentication\BackendUserAuthentication
;
19 use TYPO3\CMS\Core\Cache\CacheManager
;
20 use TYPO3\CMS\Core\Cache\Frontend\VariableFrontend
;
21 use TYPO3\CMS\Core\Configuration\FlexForm\FlexFormTools
;
22 use TYPO3\CMS\Core\Database\DatabaseConnection
;
23 use TYPO3\CMS\Core\Database\ReferenceIndex
;
24 use TYPO3\CMS\Core\Database\RelationHandler
;
25 use TYPO3\CMS\Core\Html\RteHtmlParser
;
26 use TYPO3\CMS\Core\Messaging\FlashMessage
;
27 use TYPO3\CMS\Core\Messaging\FlashMessageService
;
28 use TYPO3\CMS\Core\
Resource\ResourceFactory
;
29 use TYPO3\CMS\Core\Type\Bitmask\Permission
;
30 use TYPO3\CMS\Core\Utility\ArrayUtility
;
31 use TYPO3\CMS\Core\Utility\File\BasicFileUtility
;
32 use TYPO3\CMS\Core\Utility\GeneralUtility
;
33 use TYPO3\CMS\Core\Utility\MathUtility
;
34 use TYPO3\CMS\Core\Utility\PathUtility
;
35 use TYPO3\CMS\Core\Utility\StringUtility
;
36 use TYPO3\CMS\Core\Versioning\VersionState
;
39 * The main data handler class which takes care of correctly updating and inserting records.
40 * This class was formerly known as TCEmain.
42 * This is the TYPO3 Core Engine class for manipulation of the database
43 * This class is used by eg. the tce_db.php script which provides an the interface for POST forms to this class.
46 * - $GLOBALS['TCA'] must exist
47 * - $GLOBALS['LANG'] must exist
49 * tce_db.php for further comments and SYNTAX! Also see document 'TYPO3 Core API' for details.
53 // *********************
54 // Public variables you can configure before using the class:
55 // *********************
57 * If TRUE, the default log-messages will be stored. This should not be necessary if the locallang-file for the
58 * log-display is properly configured. So disabling this will just save some database-space as the default messages are not saved.
62 public $storeLogMessages = true;
65 * If TRUE, actions are logged to sys_log.
69 public $enableLogging = true;
72 * If TRUE, the datamap array is reversed in the order, which is a nice thing if you're creating a whole new
77 public $reverseOrder = false;
80 * If TRUE, only fields which are different from the database values are saved! In fact, if a whole input array
81 * is similar, it's not saved then.
85 public $checkSimilar = true;
88 * This will read the record after having updated or inserted it. If anything is not properly submitted an error
89 * is written to the log. This feature consumes extra time by selecting records
93 public $checkStoredRecords = true;
96 * If set, values '' and 0 will equal each other when the stored records are checked.
100 public $checkStoredRecords_loose = true;
103 * If this is set, then a page is deleted by deleting the whole branch under it (user must have
104 * delete permissions to it all). If not set, then the page is deleted ONLY if it has no branch.
108 public $deleteTree = false;
111 * If set, then the 'hideAtCopy' flag for tables will be ignored.
115 public $neverHideAtCopy = false;
118 * If set, then the TCE class has been instantiated during an import action of a T3D
122 public $isImporting = false;
125 * If set, then transformations are NOT performed on the input.
129 public $dontProcessTransformations = false;
132 * TRUE: (traditional) Updates when record is saved. For flexforms, updates if change is made to the localized value.
133 * FALSE: Will not update anything.
134 * "FORCE_FFUPD" (string): Like TRUE, but will force update to the FlexForm Field
138 public $updateModeL10NdiffData = true;
141 * If TRUE, the translation diff. fields will in fact be reset so that they indicate that all needs to change again!
142 * It's meant as the opposite of declaring the record translated.
146 public $updateModeL10NdiffDataClear = false;
149 * If TRUE, workspace restrictions are bypassed on edit an create actions (process_datamap()).
150 * YOU MUST KNOW what you do if you use this feature!
154 public $bypassWorkspaceRestrictions = false;
157 * If TRUE, file handling of attached files (addition, deletion etc) is bypassed - the value is saved straight away.
158 * YOU MUST KNOW what you are doing with this feature!
162 public $bypassFileHandling = false;
165 * If TRUE, access check, check for deleted etc. for records is bypassed.
166 * YOU MUST KNOW what you are doing if you use this feature!
170 public $bypassAccessCheckForRecords = false;
173 * Comma-separated list. This list of tables decides which tables will be copied. If empty then none will.
174 * If '*' then all will (that the user has permission to of course)
178 public $copyWhichTables = '*';
181 * If 0 then branch is NOT copied.
182 * If 1 then pages on the 1st level is copied.
183 * If 2 then pages on the second level is copied ... and so on
187 public $copyTree = 0;
190 * [table][fields]=value: New records are created with default values and you can set this array on the
191 * form $defaultValues[$table][$field] = $value to override the default values fetched from TCA.
192 * If ->setDefaultsFromUserTS is called UserTSconfig default values will overrule existing values in this array
193 * (thus UserTSconfig overrules externally set defaults which overrules TCA defaults)
197 public $defaultValues = array();
200 * [table][fields]=value: You can set this array on the form $overrideValues[$table][$field] = $value to
201 * override the incoming data. You must set this externally. You must make sure the fields in this array are also
202 * found in the table, because it's not checked. All columns can be set by this array!
206 public $overrideValues = array();
209 * [filename]=alternative_filename: Use this array to force another name onto a file.
210 * Eg. if you set ['/tmp/blablabal'] = 'my_file.txt' and '/tmp/blablabal' is set for a certain file-field,
211 * then 'my_file.txt' will be used as the name instead.
215 public $alternativeFileName = array();
218 * Array [filename]=alternative_filepath: Same as alternativeFileName but with relative path to the file
222 public $alternativeFilePath = array();
225 * If entries are set in this array corresponding to fields for update, they are ignored and thus NOT updated.
226 * You could set this array from a series of checkboxes with value=0 and hidden fields before the checkbox with 1.
227 * Then an empty checkbox will disable the field.
231 public $data_disableFields = array();
234 * Use this array to validate suggested uids for tables by setting [table]:[uid]. This is a dangerous option
235 * since it will force the inserted record to have a certain UID. The value just have to be TRUE, but if you set
236 * it to "DELETE" it will make sure any record with that UID will be deleted first (raw delete).
237 * The option is used for import of T3D files when synchronizing between two mirrored servers.
238 * As a security measure this feature is available only for Admin Users (for now)
242 public $suggestedInsertUids = array();
245 * Object. Call back object for FlexForm traversal. Useful when external classes wants to use the
246 * iteration functions inside DataHandler for traversing a FlexForm structure.
252 // *********************
253 // Internal variables (mapping arrays) which can be used (read-only) from outside
254 // *********************
256 * Contains mapping of auto-versionized records.
260 public $autoVersionIdMap = array();
263 * When new elements are created, this array contains a map between their "NEW..." string IDs and the eventual UID they got when stored in database
267 public $substNEWwithIDs = array();
270 * Like $substNEWwithIDs, but where each old "NEW..." id is mapped to the table it was from.
274 public $substNEWwithIDs_table = array();
277 * Holds the tables and there the ids of newly created child records from IRRE
281 public $newRelatedIDs = array();
284 * This array is the sum of all copying operations in this class. May be READ from outside, thus partly public.
288 public $copyMappingArray_merged = array();
291 * A map between input file name and final destination for files being attached to records.
295 public $copiedFileMap = array();
298 * Contains [table][id][field] of fiels where RTEmagic images was copied. Holds old filename as key and new filename as value.
302 public $RTEmagic_copyIndex = array();
305 * Errors are collected in this variable.
309 public $errorLog = array();
312 * Fields from the pages-table for which changes will trigger a pagetree refresh
316 public $pagetreeRefreshFieldsFromPages = array('pid', 'sorting', 'deleted', 'hidden', 'title', 'doktype', 'is_siteroot', 'fe_group', 'nav_hide', 'nav_title', 'module', 'starttime', 'endtime', 'content_from_pid');
319 * Indicates whether the pagetree needs a refresh because of important changes
323 public $pagetreeNeedsRefresh = false;
325 // *********************
326 // Internal Variables, do not touch.
327 // *********************
329 // Variables set in init() function:
332 * The user-object the script uses. If not set from outside, this is set to the current global $BE_USER.
334 * @var BackendUserAuthentication
339 * Will be set to uid of be_user executing this script
346 * Will be set to username of be_user executing this script
353 * Will be set if user is admin
360 * Can be overridden from $GLOBALS['TYPO3_CONF_VARS']
364 public $defaultPermissions = array(
365 'user' => 'show,edit,delete,new,editcontent',
366 'group' => 'show,edit,new,editcontent',
371 * The list of <table>-<fields> that cannot be edited by user. This is compiled from TCA/exclude-flag combined with non_exclude_fields for the user.
375 protected $excludedTablesAndFields = array();
378 * Data submitted from the form view, used to control behaviours,
379 * e.g. this is used to activate/deactivate fields and thus store NULL values
383 protected $control = array();
386 * Set with incoming data array
390 public $datamap = array();
393 * Set with incoming cmd array
397 public $cmdmap = array();
400 * List of changed old record ids to new records ids
404 protected $mmHistoryRecords = array();
407 * List of changed old record ids to new records ids
411 protected $historyRecords = array();
419 public $pMap = array(
432 * Integer: The interval between sorting numbers used with tables with a 'sorting' field defined. Min 1
436 public $sortIntervals = 256;
438 // Internal caching arrays
440 * Used by function checkRecordUpdateAccess() to store whether a record is updatable or not.
444 public $recUpdateAccessCache = array();
447 * User by function checkRecordInsertAccess() to store whether a record can be inserted on a page id
451 public $recInsertAccessCache = array();
454 * Caching array for check of whether records are in a webmount
458 public $isRecordInWebMount_Cache = array();
461 * Caching array for page ids in webmounts
465 public $isInWebMount_Cache = array();
468 * Caching for collecting TSconfig for page ids
472 public $cachedTSconfig = array();
475 * Used for caching page records in pageInfo()
479 public $pageCache = array();
482 * Array caching workspace access for BE_USER
486 public $checkWorkspaceCache = array();
490 * For accumulation of MM relations that must be written after new records are created.
494 public $dbAnalysisStore = array();
497 * For accumulation of files which must be deleted after processing of all input content
501 public $removeFilesStore = array();
504 * Uploaded files, set by process_uploads()
508 public $uploadedFileArray = array();
511 * Used for tracking references that might need correction after operations
515 public $registerDBList = array();
518 * Used for tracking references that might need correction in pid field after operations (e.g. IRRE)
522 public $registerDBPids = array();
525 * Used by the copy action to track the ids of new pages so subpages are correctly inserted!
526 * THIS is internally cleared for each executed copy operation! DO NOT USE THIS FROM OUTSIDE!
527 * Read from copyMappingArray_merged instead which is accumulating this information.
529 * NOTE: This is used by some outside scripts (e.g. hooks), as the results in $copyMappingArray_merged
530 * are only available after an action has been completed.
534 public $copyMappingArray = array();
537 * Array used for remapping uids and values at the end of process_datamap
541 public $remapStack = array();
544 * Array used for remapping uids and values at the end of process_datamap
545 * (e.g. $remapStackRecords[<table>][<uid>] = <index in $remapStack>)
549 public $remapStackRecords = array();
552 * Array used for checking whether new children need to be remapped
556 protected $remapStackChildIds = array();
559 * Array used for executing addition actions after remapping happened (set processRemapStack())
563 protected $remapStackActions = array();
566 * Array used for executing post-processing on the reference index
570 protected $remapStackRefIndex = array();
573 * Array used for additional calls to $this->updateRefIndex
577 public $updateRefIndexStack = array();
580 * Tells, that this DataHandler instance was called from \TYPO3\CMS\Impext\ImportExport.
581 * This variable is set by \TYPO3\CMS\Impext\ImportExport
585 public $callFromImpExp = false;
588 * Array for new flexform index mapping
592 public $newIndexMap = array();
596 * basicFileFunctions object
597 * For "singleton" file-manipulation object
599 * @var BasicFileUtility
604 * Set to "currentRecord" during checking of values.
608 public $checkValue_currentRecord = array();
611 * A signal flag used to tell file processing that auto versioning has happened and hence certain action should be applied.
615 public $autoVersioningUpdate = false;
618 * Disable delete clause
622 protected $disableDeleteClause = false;
627 protected $checkModifyAccessListHookObjects;
632 protected $version_remapMMForVersionSwap_reg;
635 * The outer most instance of \TYPO3\CMS\Core\DataHandling\DataHandler:
636 * This object instantiates itself on versioning and localization ...
638 * @var \TYPO3\CMS\Core\DataHandling\DataHandler
640 protected $outerMostInstance = null;
643 * Internal cache for collecting records that should trigger cache clearing
647 protected static $recordsToClearCacheFor = array();
650 * Internal cache for pids of records which were deleted. It's not possible
651 * to retrieve the parent folder/page at a later stage
655 protected static $recordPidsForDeletedRecords = array();
658 * Database layer. Identical to $GLOBALS['TYPO3_DB']
660 * @var DatabaseConnection
662 protected $databaseConnection;
665 * Runtime Cache to store and retrieve data computed for a single request
667 * @var \TYPO3\CMS\Core\Cache\Frontend\VariableFrontend
669 protected $runtimeCache = null;
672 * Prefix for the cache entries of nested element calls since the runtimeCache has a global scope.
676 protected $cachePrefixNestedElementCalls = 'core-datahandler-nestedElementCalls-';
681 public function __construct()
683 $this->databaseConnection
= $GLOBALS['TYPO3_DB'];
684 $this->runtimeCache
= $this->getRuntimeCache();
688 * @param array $control
690 public function setControl(array $control)
692 $this->control
= $control;
697 * For details, see 'TYPO3 Core API' document.
698 * This function does not start the processing of data, but merely initializes the object
700 * @param array $data Data to be modified or inserted in the database
701 * @param array $cmd Commands to copy, move, delete, localize, versionize records.
702 * @param BackendUserAuthentication|NULL $altUserObject An alternative userobject you can set instead of the default, which is $GLOBALS['BE_USER']
705 public function start($data, $cmd, $altUserObject = null)
707 // Initializing BE_USER
708 $this->BE_USER
= is_object($altUserObject) ?
$altUserObject : $GLOBALS['BE_USER'];
709 $this->userid
= $this->BE_USER
->user
['uid'];
710 $this->username
= $this->BE_USER
->user
['username'];
711 $this->admin
= $this->BE_USER
->user
['admin'];
712 if ($this->BE_USER
->uc
['recursiveDelete']) {
713 $this->deleteTree
= 1;
715 if ($GLOBALS['TYPO3_CONF_VARS']['BE']['explicitConfirmationOfTranslation'] && $this->updateModeL10NdiffData
=== true) {
716 $this->updateModeL10NdiffData
= false;
718 // Initializing default permissions for pages
719 $defaultPermissions = $GLOBALS['TYPO3_CONF_VARS']['BE']['defaultPermissions'];
720 if (isset($defaultPermissions['user'])) {
721 $this->defaultPermissions
['user'] = $defaultPermissions['user'];
723 if (isset($defaultPermissions['group'])) {
724 $this->defaultPermissions
['group'] = $defaultPermissions['group'];
726 if (isset($defaultPermissions['everybody'])) {
727 $this->defaultPermissions
['everybody'] = $defaultPermissions['everybody'];
729 // generates the excludelist, based on TCA/exclude-flag and non_exclude_fields for the user:
731 $this->excludedTablesAndFields
= array_flip($this->getExcludeListArray());
733 // Setting the data and cmd arrays
734 if (is_array($data)) {
736 $this->datamap
= $data;
738 if (is_array($cmd)) {
740 $this->cmdmap
= $cmd;
745 * Function that can mirror input values in datamap-array to other uid numbers.
746 * Example: $mirror[table][11] = '22,33' will look for content in $this->datamap[table][11] and copy it to $this->datamap[table][22] and $this->datamap[table][33]
748 * @param array $mirror This array has the syntax $mirror[table_name][uid] = [list of uids to copy data-value TO!]
751 public function setMirror($mirror)
753 if (!is_array($mirror)) {
757 foreach ($mirror as $table => $uid_array) {
758 if (!isset($this->datamap
[$table])) {
762 foreach ($uid_array as $id => $uidList) {
763 if (!isset($this->datamap
[$table][$id])) {
767 $theIdsInArray = GeneralUtility
::trimExplode(',', $uidList, true);
768 foreach ($theIdsInArray as $copyToUid) {
769 $this->datamap
[$table][$copyToUid] = $this->datamap
[$table][$id];
776 * Initializes default values coming from User TSconfig
778 * @param array $userTS User TSconfig array
781 public function setDefaultsFromUserTS($userTS)
783 if (!is_array($userTS)) {
787 foreach ($userTS as $k => $v) {
788 $k = substr($k, 0, -1);
789 if (!$k ||
!is_array($v) ||
!isset($GLOBALS['TCA'][$k])) {
793 if (is_array($this->defaultValues
[$k])) {
794 $this->defaultValues
[$k] = array_merge($this->defaultValues
[$k], $v);
796 $this->defaultValues
[$k] = $v;
802 * Processing of uploaded files.
803 * It turns out that some versions of PHP arranges submitted data for files different if sent in an array. This function will unify this so the internal array $this->uploadedFileArray will always contain files arranged in the same structure.
805 * @param array $postFiles $_FILES array
808 public function process_uploads($postFiles)
810 if (!is_array($postFiles)) {
815 if ($this->BE_USER
->workspace
!== 0 && $this->BE_USER
->workspaceRec
['freeze']) {
816 if ($this->enableLogging
) {
817 $this->newlog('All editing in this workspace has been frozen!', 1);
821 $subA = reset($postFiles);
822 if (is_array($subA)) {
823 if (is_array($subA['name']) && is_array($subA['type']) && is_array($subA['tmp_name']) && is_array($subA['size'])) {
824 // Initialize the uploadedFilesArray:
825 $this->uploadedFileArray
= array();
827 foreach ($subA as $key => $values) {
828 $this->process_uploads_traverseArray($this->uploadedFileArray
, $values, $key);
831 $this->uploadedFileArray
= $subA;
837 * Traverse the upload array if needed to rearrange values.
839 * @param array $outputArr $this->uploadedFileArray passed by reference
840 * @param array $inputArr Input array ($_FILES parts)
841 * @param string $keyToSet The current $_FILES array key to set on the outermost level.
844 * @see process_uploads()
846 public function process_uploads_traverseArray(&$outputArr, $inputArr, $keyToSet)
848 if (is_array($inputArr)) {
849 foreach ($inputArr as $key => $value) {
850 $this->process_uploads_traverseArray($outputArr[$key], $inputArr[$key], $keyToSet);
853 $outputArr[$keyToSet] = $inputArr;
857 /*********************************************
861 *********************************************/
863 * Hook: processDatamap_afterDatabaseOperations
864 * (calls $hookObj->processDatamap_afterDatabaseOperations($status, $table, $id, $fieldArray, $this);)
866 * Note: When using the hook after INSERT operations, you will only get the temporary NEW... id passed to your hook as $id,
867 * but you can easily translate it to the real uid of the inserted record using the $this->substNEWwithIDs array.
869 * @param array $hookObjectsArr (reference) Array with hook objects
870 * @param string $status (reference) Status of the current operation, 'new' or 'update
871 * @param string $table (reference) The table currently processing data for
872 * @param string $id (reference) The record uid currently processing data for, [integer] or [string] (like 'NEW...')
873 * @param array $fieldArray (reference) The field array of a record
876 public function hook_processDatamap_afterDatabaseOperations(&$hookObjectsArr, &$status, &$table, &$id, &$fieldArray)
878 // Process hook directly:
879 if (!isset($this->remapStackRecords
[$table][$id])) {
880 foreach ($hookObjectsArr as $hookObj) {
881 if (method_exists($hookObj, 'processDatamap_afterDatabaseOperations')) {
882 $hookObj->processDatamap_afterDatabaseOperations($status, $table, $id, $fieldArray, $this);
886 $this->remapStackRecords
[$table][$id]['processDatamap_afterDatabaseOperations'] = array(
888 'fieldArray' => $fieldArray,
889 'hookObjectsArr' => $hookObjectsArr
895 * Gets the 'checkModifyAccessList' hook objects.
896 * The first call initializes the accordant objects.
898 * @return array The 'checkModifyAccessList' hook objects (if any)
899 * @throws \UnexpectedValueException
901 protected function getCheckModifyAccessListHookObjects()
903 if (!isset($this->checkModifyAccessListHookObjects
)) {
904 $this->checkModifyAccessListHookObjects
= array();
905 if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['checkModifyAccessList'])) {
906 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['checkModifyAccessList'] as $classData) {
907 $hookObject = GeneralUtility
::getUserObj($classData);
908 if (!$hookObject instanceof DataHandlerCheckModifyAccessListHookInterface
) {
909 throw new \
UnexpectedValueException('$hookObject must implement interface \\TYPO3\\CMS\\Core\\DataHandling\\DataHandlerCheckModifyAccessListHookInterface', 1251892472);
911 $this->checkModifyAccessListHookObjects
[] = $hookObject;
915 return $this->checkModifyAccessListHookObjects
;
918 /*********************************************
922 *********************************************/
924 * Processing the data-array
925 * Call this function to process the data-array set by start()
929 public function process_datamap()
931 $this->controlActiveElements();
933 // Keep versionized(!) relations here locally:
934 $registerDBList = array();
935 $this->registerElementsToBeDeleted();
936 $this->datamap
= $this->unsetElementsToBeDeleted($this->datamap
);
938 if ($this->BE_USER
->workspace
!== 0 && $this->BE_USER
->workspaceRec
['freeze']) {
939 if ($this->enableLogging
) {
940 $this->newlog('All editing in this workspace has been frozen!', 1);
944 // First prepare user defined objects (if any) for hooks which extend this function:
945 $hookObjectsArr = array();
946 if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processDatamapClass'])) {
947 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processDatamapClass'] as $classRef) {
948 $hookObject = GeneralUtility
::getUserObj($classRef);
949 if (method_exists($hookObject, 'processDatamap_beforeStart')) {
950 $hookObject->processDatamap_beforeStart($this);
952 $hookObjectsArr[] = $hookObject;
955 // Organize tables so that the pages-table is always processed first. This is required if you want to make sure that content pointing to a new page will be created.
956 $orderOfTables = array();
958 if (isset($this->datamap
['pages'])) {
959 $orderOfTables[] = 'pages';
961 $orderOfTables = array_unique(array_merge($orderOfTables, array_keys($this->datamap
)));
962 // Process the tables...
963 foreach ($orderOfTables as $table) {
965 // - table is set in $GLOBALS['TCA'],
966 // - table is NOT readOnly
967 // - the table is set with content in the data-array (if not, there's nothing to process...)
968 // - permissions for tableaccess OK
969 $modifyAccessList = $this->checkModifyAccessList($table);
970 if ($this->enableLogging
&& !$modifyAccessList) {
971 $this->log($table, 0, 2, 0, 1, 'Attempt to modify table \'%s\' without permission', 1, array($table));
973 if (!isset($GLOBALS['TCA'][$table]) ||
$this->tableReadOnly($table) ||
!is_array($this->datamap
[$table]) ||
!$modifyAccessList) {
977 if ($this->reverseOrder
) {
978 $this->datamap
[$table] = array_reverse($this->datamap
[$table], 1);
980 // For each record from the table, do:
981 // $id is the record uid, may be a string if new records...
982 // $incomingFieldArray is the array of fields
983 foreach ($this->datamap
[$table] as $id => $incomingFieldArray) {
984 if (!is_array($incomingFieldArray)) {
989 // Handle native date/time fields
990 $dateTimeFormats = $this->databaseConnection
->getDateTimeFormats($table);
991 foreach ($GLOBALS['TCA'][$table]['columns'] as $column => $config) {
992 if (isset($incomingFieldArray[$column])) {
993 if (isset($config['config']['dbType']) && ($config['config']['dbType'] === 'date' ||
$config['config']['dbType'] === 'datetime')) {
994 $emptyValue = $dateTimeFormats[$config['config']['dbType']]['empty'];
995 $format = $dateTimeFormats[$config['config']['dbType']]['format'];
996 $incomingFieldArray[$column] = $incomingFieldArray[$column] ?
gmdate($format, $incomingFieldArray[$column]) : $emptyValue;
1000 // Hook: processDatamap_preProcessFieldArray
1001 foreach ($hookObjectsArr as $hookObj) {
1002 if (method_exists($hookObj, 'processDatamap_preProcessFieldArray')) {
1003 $hookObj->processDatamap_preProcessFieldArray($incomingFieldArray, $table, $id, $this);
1006 // ******************************
1007 // Checking access to the record
1008 // ******************************
1009 $createNewVersion = false;
1010 $recordAccess = false;
1011 $old_pid_value = '';
1012 $this->autoVersioningUpdate
= false;
1013 // Is it a new record? (Then Id is a string)
1014 if (!MathUtility
::canBeInterpretedAsInteger($id)) {
1015 // Get a fieldArray with default values
1016 $fieldArray = $this->newFieldArray($table);
1017 // A pid must be set for new records.
1018 if (isset($incomingFieldArray['pid'])) {
1020 $pid_value = $incomingFieldArray['pid'];
1021 // Checking and finding numerical pid, it may be a string-reference to another value
1024 if (strstr($pid_value, 'NEW')) {
1025 if ($pid_value[0] === '-') {
1027 $pid_value = substr($pid_value, 1);
1031 // Trying to find the correct numerical value as it should be mapped by earlier processing of another new record.
1032 if (isset($this->substNEWwithIDs
[$pid_value])) {
1033 if ($negFlag === 1) {
1034 $old_pid_value = $this->substNEWwithIDs
[$pid_value];
1036 $pid_value = (int)($negFlag * $this->substNEWwithIDs
[$pid_value]);
1041 $pid_value = (int)$pid_value;
1042 // The $pid_value is now the numerical pid at this point
1044 $sortRow = $GLOBALS['TCA'][$table]['ctrl']['sortby'];
1045 // Points to a page on which to insert the element, possibly in the top of the page
1046 if ($pid_value >= 0) {
1047 // If this table is sorted we better find the top sorting number
1049 $fieldArray[$sortRow] = $this->getSortNumber($table, 0, $pid_value);
1051 // The numerical pid is inserted in the data array
1052 $fieldArray['pid'] = $pid_value;
1054 // points to another record before ifself
1055 // If this table is sorted we better find the top sorting number
1057 // Because $pid_value is < 0, getSortNumber returns an array
1058 $tempArray = $this->getSortNumber($table, 0, $pid_value);
1059 $fieldArray['pid'] = $tempArray['pid'];
1060 $fieldArray[$sortRow] = $tempArray['sortNumber'];
1062 // Here we fetch the PID of the record that we point to...
1063 $tempdata = $this->recordInfo($table, abs($pid_value), 'pid');
1064 $fieldArray['pid'] = $tempdata['pid'];
1069 $theRealPid = $fieldArray['pid'];
1070 // Now, check if we may insert records on this pid.
1071 if ($theRealPid >= 0) {
1072 // Checks if records can be inserted on this $pid.
1073 $recordAccess = $this->checkRecordInsertAccess($table, $theRealPid);
1074 if ($recordAccess) {
1075 $this->addDefaultPermittedLanguageIfNotSet($table, $incomingFieldArray);
1076 $recordAccess = $this->BE_USER
->recordEditAccessInternals($table, $incomingFieldArray, true);
1077 if (!$recordAccess) {
1078 if ($this->enableLogging
) {
1079 $this->newlog('recordEditAccessInternals() check failed. [' . $this->BE_USER
->errorMsg
. ']', 1);
1081 } elseif (!$this->bypassWorkspaceRestrictions
) {
1082 // Workspace related processing:
1083 // If LIVE records cannot be created in the current PID due to workspace restrictions, prepare creation of placeholder-record
1084 if ($res = $this->BE_USER
->workspaceAllowLiveRecordsInPID($theRealPid, $table)) {
1086 $recordAccess = false;
1087 if ($this->enableLogging
) {
1088 $this->newlog('Stage for versioning root point and users access level did not allow for editing', 1);
1092 // So, if no live records were allowed, we have to create a new version of this record:
1093 if ($GLOBALS['TCA'][$table]['ctrl']['versioningWS']) {
1094 $createNewVersion = true;
1096 $recordAccess = false;
1097 if ($this->enableLogging
) {
1098 $this->newlog('Record could not be created in this workspace in this branch', 1);
1105 debug('Internal ERROR: pid should not be less than zero!');
1107 // Yes new record, change $record_status to 'insert'
1110 // Nope... $id is a number
1111 $fieldArray = array();
1112 $recordAccess = $this->checkRecordUpdateAccess($table, $id, $incomingFieldArray, $hookObjectsArr);
1113 if (!$recordAccess) {
1114 if ($this->enableLogging
) {
1115 $propArr = $this->getRecordProperties($table, $id);
1116 $this->log($table, $id, 2, 0, 1, 'Attempt to modify record \'%s\' (%s) without permission. Or non-existing page.', 2, array($propArr['header'], $table . ':' . $id), $propArr['event_pid']);
1120 // Next check of the record permissions (internals)
1121 $recordAccess = $this->BE_USER
->recordEditAccessInternals($table, $id);
1122 if (!$recordAccess) {
1123 if ($this->enableLogging
) {
1124 $this->newlog('recordEditAccessInternals() check failed. [' . $this->BE_USER
->errorMsg
. ']', 1);
1127 // Here we fetch the PID of the record that we point to...
1128 $tempdata = $this->recordInfo($table, $id, 'pid' . ($GLOBALS['TCA'][$table]['ctrl']['versioningWS'] ?
',t3ver_wsid,t3ver_stage' : ''));
1129 $theRealPid = $tempdata['pid'];
1130 // Use the new id of the versionized record we're trying to write to:
1131 // (This record is a child record of a parent and has already been versionized.)
1132 if ($this->autoVersionIdMap
[$table][$id]) {
1133 // For the reason that creating a new version of this record, automatically
1134 // created related child records (e.g. "IRRE"), update the accordant field:
1135 $this->getVersionizedIncomingFieldArray($table, $id, $incomingFieldArray, $registerDBList);
1136 // Use the new id of the copied/versionized record:
1137 $id = $this->autoVersionIdMap
[$table][$id];
1138 $recordAccess = true;
1139 $this->autoVersioningUpdate
= true;
1140 } elseif (!$this->bypassWorkspaceRestrictions
&& ($errorCode = $this->BE_USER
->workspaceCannotEditRecord($table, $tempdata))) {
1141 $recordAccess = false;
1142 // Versioning is required and it must be offline version!
1143 // Check if there already is a workspace version
1144 $WSversion = BackendUtility
::getWorkspaceVersionOfRecord($this->BE_USER
->workspace
, $table, $id, 'uid,t3ver_oid');
1146 $id = $WSversion['uid'];
1147 $recordAccess = true;
1148 } elseif ($this->BE_USER
->workspaceAllowAutoCreation($table, $id, $theRealPid)) {
1149 // new version of a record created in a workspace - so always refresh pagetree to indicate there is a change in the workspace
1150 $this->pagetreeNeedsRefresh
= true;
1152 /** @var $tce DataHandler */
1153 $tce = GeneralUtility
::makeInstance(__CLASS__
);
1154 // Setting up command for creating a new version of the record:
1156 $cmd[$table][$id]['version'] = array(
1159 // Default is to create a version of the individual records... element versioning that is.
1160 'label' => 'Auto-created for WS #' . $this->BE_USER
->workspace
1162 $tce->start(array(), $cmd);
1163 $tce->process_cmdmap();
1164 $this->errorLog
= array_merge($this->errorLog
, $tce->errorLog
);
1165 // If copying was successful, share the new uids (also of related children):
1166 if ($tce->copyMappingArray
[$table][$id]) {
1167 foreach ($tce->copyMappingArray
as $origTable => $origIdArray) {
1168 foreach ($origIdArray as $origId => $newId) {
1169 $this->uploadedFileArray
[$origTable][$newId] = $this->uploadedFileArray
[$origTable][$origId];
1170 $this->autoVersionIdMap
[$origTable][$origId] = $newId;
1173 ArrayUtility
::mergeRecursiveWithOverrule($this->RTEmagic_copyIndex
, $tce->RTEmagic_copyIndex
);
1174 // See where RTEmagic_copyIndex is used inside fillInFieldArray() for more information...
1175 // Update registerDBList, that holds the copied relations to child records:
1176 $registerDBList = array_merge($registerDBList, $tce->registerDBList
);
1177 // For the reason that creating a new version of this record, automatically
1178 // created related child records (e.g. "IRRE"), update the accordant field:
1179 $this->getVersionizedIncomingFieldArray($table, $id, $incomingFieldArray, $registerDBList);
1180 // Use the new id of the copied/versionized record:
1181 $id = $this->autoVersionIdMap
[$table][$id];
1182 $recordAccess = true;
1183 $this->autoVersioningUpdate
= true;
1184 } elseif ($this->enableLogging
) {
1185 $this->newlog('Could not be edited in offline workspace in the branch where found (failure state: \'' . $errorCode . '\'). Auto-creation of version failed!', 1);
1187 } elseif ($this->enableLogging
) {
1188 $this->newlog('Could not be edited in offline workspace in the branch where found (failure state: \'' . $errorCode . '\'). Auto-creation of version not allowed in workspace!', 1);
1192 // The default is 'update'
1195 // If access was granted above, proceed to create or update record:
1196 if (!$recordAccess) {
1200 // Here the "pid" is set IF NOT the old pid was a string pointing to a place in the subst-id array.
1201 list($tscPID) = BackendUtility
::getTSCpid($table, $id, $old_pid_value ?
$old_pid_value : $fieldArray['pid']);
1202 if ($status === 'new' && $table === 'pages') {
1203 $TSConfig = $this->getTCEMAIN_TSconfig($tscPID);
1204 if (isset($TSConfig['permissions.']) && is_array($TSConfig['permissions.'])) {
1205 $fieldArray = $this->setTSconfigPermissions($fieldArray, $TSConfig['permissions.']);
1208 // Processing of all fields in incomingFieldArray and setting them in $fieldArray
1209 $fieldArray = $this->fillInFieldArray($table, $id, $fieldArray, $incomingFieldArray, $theRealPid, $status, $tscPID);
1210 $newVersion_placeholderFieldArray = array();
1211 if ($createNewVersion) {
1212 // create a placeholder array with already processed field content
1213 $newVersion_placeholderFieldArray = $fieldArray;
1215 // NOTICE! All manipulation beyond this point bypasses both "excludeFields" AND possible "MM" relations / file uploads to field!
1216 // Forcing some values unto field array:
1217 // NOTICE: This overriding is potentially dangerous; permissions per field is not checked!!!
1218 $fieldArray = $this->overrideFieldArray($table, $fieldArray);
1219 if ($createNewVersion) {
1220 $newVersion_placeholderFieldArray = $this->overrideFieldArray($table, $newVersion_placeholderFieldArray);
1222 // Setting system fields
1223 if ($status == 'new') {
1224 if ($GLOBALS['TCA'][$table]['ctrl']['crdate']) {
1225 $fieldArray[$GLOBALS['TCA'][$table]['ctrl']['crdate']] = $GLOBALS['EXEC_TIME'];
1226 if ($createNewVersion) {
1227 $newVersion_placeholderFieldArray[$GLOBALS['TCA'][$table]['ctrl']['crdate']] = $GLOBALS['EXEC_TIME'];
1230 if ($GLOBALS['TCA'][$table]['ctrl']['cruser_id']) {
1231 $fieldArray[$GLOBALS['TCA'][$table]['ctrl']['cruser_id']] = $this->userid
;
1232 if ($createNewVersion) {
1233 $newVersion_placeholderFieldArray[$GLOBALS['TCA'][$table]['ctrl']['cruser_id']] = $this->userid
;
1236 } elseif ($this->checkSimilar
) {
1237 // Removing fields which are equal to the current value:
1238 $fieldArray = $this->compareFieldArrayWithCurrentAndUnset($table, $id, $fieldArray);
1240 if ($GLOBALS['TCA'][$table]['ctrl']['tstamp'] && !empty($fieldArray)) {
1241 $fieldArray[$GLOBALS['TCA'][$table]['ctrl']['tstamp']] = $GLOBALS['EXEC_TIME'];
1242 if ($createNewVersion) {
1243 $newVersion_placeholderFieldArray[$GLOBALS['TCA'][$table]['ctrl']['tstamp']] = $GLOBALS['EXEC_TIME'];
1246 // Set stage to "Editing" to make sure we restart the workflow
1247 if ($GLOBALS['TCA'][$table]['ctrl']['versioningWS']) {
1248 $fieldArray['t3ver_stage'] = 0;
1250 // Hook: processDatamap_postProcessFieldArray
1251 foreach ($hookObjectsArr as $hookObj) {
1252 if (method_exists($hookObj, 'processDatamap_postProcessFieldArray')) {
1253 $hookObj->processDatamap_postProcessFieldArray($status, $table, $id, $fieldArray, $this);
1256 // Performing insert/update. If fieldArray has been unset by some userfunction (see hook above), don't do anything
1257 // Kasper: Unsetting the fieldArray is dangerous; MM relations might be saved already and files could have been uploaded that are now "lost"
1258 if (is_array($fieldArray)) {
1259 if ($status == 'new') {
1260 if ($table === 'pages') {
1261 // for new pages always a refresh is needed
1262 $this->pagetreeNeedsRefresh
= true;
1265 // This creates a new version of the record with online placeholder and offline version
1266 if ($createNewVersion) {
1267 // new record created in a workspace - so always refresh pagetree to indicate there is a change in the workspace
1268 $this->pagetreeNeedsRefresh
= true;
1270 $newVersion_placeholderFieldArray['t3ver_label'] = 'INITIAL PLACEHOLDER';
1271 // Setting placeholder state value for temporary record
1272 $newVersion_placeholderFieldArray['t3ver_state'] = (string)new VersionState(VersionState
::NEW_PLACEHOLDER
);
1273 // Setting workspace - only so display of place holders can filter out those from other workspaces.
1274 $newVersion_placeholderFieldArray['t3ver_wsid'] = $this->BE_USER
->workspace
;
1275 $newVersion_placeholderFieldArray[$GLOBALS['TCA'][$table]['ctrl']['label']] = $this->getPlaceholderTitleForTableLabel($table);
1276 // Saving placeholder as 'original'
1277 $this->insertDB($table, $id, $newVersion_placeholderFieldArray, false);
1278 // For the actual new offline version, set versioning values to point to placeholder:
1279 $fieldArray['pid'] = -1;
1280 $fieldArray['t3ver_oid'] = $this->substNEWwithIDs
[$id];
1281 $fieldArray['t3ver_id'] = 1;
1282 // Setting placeholder state value for version (so it can know it is currently a new version...)
1283 $fieldArray['t3ver_state'] = (string)new VersionState(VersionState
::NEW_PLACEHOLDER_VERSION
);
1284 $fieldArray['t3ver_label'] = 'First draft version';
1285 $fieldArray['t3ver_wsid'] = $this->BE_USER
->workspace
;
1286 // When inserted, $this->substNEWwithIDs[$id] will be changed to the uid of THIS version and so the interface will pick it up just nice!
1287 $phShadowId = $this->insertDB($table, $id, $fieldArray, true, 0, true);
1289 // Processes fields of the placeholder record:
1290 $this->triggerRemapAction($table, $id, array($this, 'placeholderShadowing'), array($table, $phShadowId));
1291 // Hold auto-versionized ids of placeholders:
1292 $this->autoVersionIdMap
[$table][$this->substNEWwithIDs
[$id]] = $phShadowId;
1295 $this->insertDB($table, $id, $fieldArray, false, $incomingFieldArray['uid']);
1298 if ($table === 'pages') {
1299 // only a certain number of fields needs to be checked for updates
1300 // if $this->checkSimilar is TRUE, fields with unchanged values are already removed here
1301 $fieldsToCheck = array_intersect($this->pagetreeRefreshFieldsFromPages
, array_keys($fieldArray));
1302 if (!empty($fieldsToCheck)) {
1303 $this->pagetreeNeedsRefresh
= true;
1306 $this->updateDB($table, $id, $fieldArray);
1307 $this->placeholderShadowing($table, $id);
1310 // Hook: processDatamap_afterDatabaseOperations
1311 // Note: When using the hook after INSERT operations, you will only get the temporary NEW... id passed to your hook as $id,
1312 // but you can easily translate it to the real uid of the inserted record using the $this->substNEWwithIDs array.
1313 $this->hook_processDatamap_afterDatabaseOperations($hookObjectsArr, $status, $table, $id, $fieldArray);
1316 // Process the stack of relations to remap/correct
1317 $this->processRemapStack();
1318 $this->dbAnalysisStoreExec();
1319 $this->removeRegisteredFiles();
1320 // Hook: processDatamap_afterAllOperations
1321 // Note: When this hook gets called, all operations on the submitted data have been finished.
1322 foreach ($hookObjectsArr as $hookObj) {
1323 if (method_exists($hookObj, 'processDatamap_afterAllOperations')) {
1324 $hookObj->processDatamap_afterAllOperations($this);
1327 if ($this->isOuterMostInstance()) {
1328 $this->processClearCacheQueue();
1329 $this->resetElementsToBeDeleted();
1334 * Fix shadowing of data in case we are editing an offline version of a live "New" placeholder record:
1336 * @param string $table Table name
1337 * @param int $id Record uid
1340 public function placeholderShadowing($table, $id)
1342 if ($liveRec = BackendUtility
::getLiveVersionOfRecord($table, $id, '*')) {
1343 if (VersionState
::cast($liveRec['t3ver_state'])->indicatesPlaceholder()) {
1344 $justStoredRecord = BackendUtility
::getRecord($table, $id);
1345 $newRecord = array();
1346 $shadowCols = $GLOBALS['TCA'][$table]['ctrl']['shadowColumnsForNewPlaceholders'];
1347 $shadowCols .= ',' . $GLOBALS['TCA'][$table]['ctrl']['languageField'];
1348 $shadowCols .= ',' . $GLOBALS['TCA'][$table]['ctrl']['transOrigPointerField'];
1349 $shadowCols .= ',' . $GLOBALS['TCA'][$table]['ctrl']['type'];
1350 $shadowCols .= ',' . $GLOBALS['TCA'][$table]['ctrl']['label'];
1351 $shadowColumns = array_unique(GeneralUtility
::trimExplode(',', $shadowCols, true));
1352 foreach ($shadowColumns as $fieldName) {
1353 if ((string)$justStoredRecord[$fieldName] !== (string)$liveRec[$fieldName] && isset($GLOBALS['TCA'][$table]['columns'][$fieldName]) && $fieldName !== 'uid' && $fieldName !== 'pid') {
1354 $newRecord[$fieldName] = $justStoredRecord[$fieldName];
1357 if (!empty($newRecord)) {
1358 if ($this->enableLogging
) {
1359 $this->newlog2('Shadowing done on fields <i>' . implode(',', array_keys($newRecord)) . '</i> in placeholder record ' . $table . ':' . $liveRec['uid'] . ' (offline version UID=' . $id . ')', $table, $liveRec['uid'], $liveRec['pid']);
1361 $this->updateDB($table, $liveRec['uid'], $newRecord);
1368 * Create a placeholder title for the label field that does match the field requirements
1370 * @param string $table The table name
1371 * @param string $placeholderContent Placeholder content to be used
1372 * @return string placeholder value
1374 public function getPlaceholderTitleForTableLabel($table, $placeholderContent = null)
1376 if ($placeholderContent === null) {
1377 $placeholderContent = 'PLACEHOLDER';
1380 $labelPlaceholder = '[' . $placeholderContent . ', WS#' . $this->BE_USER
->workspace
. ']';
1381 $labelField = $GLOBALS['TCA'][$table]['ctrl']['label'];
1382 if (!isset($GLOBALS['TCA'][$table]['columns'][$labelField]['config']['eval'])) {
1383 return $labelPlaceholder;
1385 $evalCodesArray = GeneralUtility
::trimExplode(',', $GLOBALS['TCA'][$table]['columns'][$labelField]['config']['eval'], true);
1386 $transformedLabel = $this->checkValue_input_Eval($labelPlaceholder, $evalCodesArray, '');
1387 return isset($transformedLabel['value']) ?
$transformedLabel['value'] : $labelPlaceholder;
1391 * Filling in the field array
1392 * $this->excludedTablesAndFields is used to filter fields if needed.
1394 * @param string $table Table name
1395 * @param int $id Record ID
1396 * @param array $fieldArray Default values, Preset $fieldArray with 'pid' maybe (pid and uid will be not be overridden anyway)
1397 * @param array $incomingFieldArray Is which fields/values you want to set. There are processed and put into $fieldArray if OK
1398 * @param int $realPid The real PID value of the record. For updates, this is just the pid of the record. For new records this is the PID of the page where it is inserted.
1399 * @param string $status Is 'new' or 'update'
1400 * @param int $tscPID TSconfig PID
1401 * @return array Field Array
1403 public function fillInFieldArray($table, $id, $fieldArray, $incomingFieldArray, $realPid, $status, $tscPID)
1406 $originalLanguageRecord = null;
1407 $originalLanguage_diffStorage = null;
1408 $diffStorageFlag = false;
1409 // Setting 'currentRecord' and 'checkValueRecord':
1410 if (strstr($id, 'NEW')) {
1411 // Must have the 'current' array - not the values after processing below...
1412 $currentRecord = ($checkValueRecord = $fieldArray);
1413 // IF $incomingFieldArray is an array, overlay it.
1414 // The point is that when new records are created as copies with flex type fields there might be a field containing information about which DataStructure to use and without that information the flexforms cannot be correctly processed.... This should be OK since the $checkValueRecord is used by the flexform evaluation only anyways...
1415 if (is_array($incomingFieldArray) && is_array($checkValueRecord)) {
1416 ArrayUtility
::mergeRecursiveWithOverrule($checkValueRecord, $incomingFieldArray);
1419 // We must use the current values as basis for this!
1420 $currentRecord = ($checkValueRecord = $this->recordInfo($table, $id, '*'));
1421 // This is done to make the pid positive for offline versions; Necessary to have diff-view for pages_language_overlay in workspaces.
1422 BackendUtility
::fixVersioningPid($table, $currentRecord);
1423 // Get original language record if available:
1424 if (is_array($currentRecord) && $GLOBALS['TCA'][$table]['ctrl']['transOrigDiffSourceField'] && $GLOBALS['TCA'][$table]['ctrl']['languageField'] && $currentRecord[$GLOBALS['TCA'][$table]['ctrl']['languageField']] > 0 && $GLOBALS['TCA'][$table]['ctrl']['transOrigPointerField'] && (int)$currentRecord[$GLOBALS['TCA'][$table]['ctrl']['transOrigPointerField']] > 0) {
1425 $lookUpTable = $GLOBALS['TCA'][$table]['ctrl']['transOrigPointerTable'] ?
: $table;
1426 $originalLanguageRecord = $this->recordInfo($lookUpTable, $currentRecord[$GLOBALS['TCA'][$table]['ctrl']['transOrigPointerField']], '*');
1427 BackendUtility
::workspaceOL($lookUpTable, $originalLanguageRecord);
1428 $originalLanguage_diffStorage = unserialize($currentRecord[$GLOBALS['TCA'][$table]['ctrl']['transOrigDiffSourceField']]);
1431 $this->checkValue_currentRecord
= $checkValueRecord;
1432 // In the following all incoming value-fields are tested:
1433 // - Are the user allowed to change the field?
1434 // - Is the field uid/pid (which are already set)
1435 // - perms-fields for pages-table, then do special things...
1436 // - If the field is nothing of the above and the field is configured in TCA, the fieldvalues are evaluated by ->checkValue
1437 // If everything is OK, the field is entered into $fieldArray[]
1438 foreach ($incomingFieldArray as $field => $fieldValue) {
1439 if (isset($this->excludedTablesAndFields
[$table . '-' . $field]) ||
$this->data_disableFields
[$table][$id][$field]) {
1443 // The field must be editable.
1444 // Checking if a value for language can be changed:
1445 $languageDeny = $GLOBALS['TCA'][$table]['ctrl']['languageField'] && (string)$GLOBALS['TCA'][$table]['ctrl']['languageField'] === (string)$field && !$this->BE_USER
->checkLanguageAccess($fieldValue);
1446 if ($languageDeny) {
1453 // Nothing happens, already set
1455 case 'perms_userid':
1456 case 'perms_groupid':
1459 case 'perms_everybody':
1460 // Permissions can be edited by the owner or the administrator
1461 if ($table == 'pages' && ($this->admin ||
$status == 'new' ||
$this->pageInfo($id, 'perms_userid') == $this->userid
)) {
1462 $value = (int)$fieldValue;
1464 case 'perms_userid':
1465 $fieldArray[$field] = $value;
1467 case 'perms_groupid':
1468 $fieldArray[$field] = $value;
1471 if ($value >= 0 && $value < pow(2, 5)) {
1472 $fieldArray[$field] = $value;
1483 case 't3ver_tstamp':
1484 // t3ver_label is not here because it CAN be edited as a regular field!
1487 if (isset($GLOBALS['TCA'][$table]['columns'][$field])) {
1488 // Evaluating the value
1489 $res = $this->checkValue($table, $field, $fieldValue, $id, $status, $realPid, $tscPID);
1490 if (array_key_exists('value', $res)) {
1491 $fieldArray[$field] = $res['value'];
1493 // Add the value of the original record to the diff-storage content:
1494 if ($this->updateModeL10NdiffData
&& $GLOBALS['TCA'][$table]['ctrl']['transOrigDiffSourceField']) {
1495 $originalLanguage_diffStorage[$field] = $this->updateModeL10NdiffDataClear ?
'' : $originalLanguageRecord[$field];
1496 $diffStorageFlag = true;
1498 // If autoversioning is happening we need to perform a nasty hack. The case is parallel to a similar hack inside checkValue_group_select_file().
1499 // When a copy or version is made of a record, a search is made for any RTEmagic* images in fields having the "images" soft reference parser applied.
1500 // That should be TRUE for RTE fields. If any are found they are duplicated to new names and the file reference in the bodytext is updated accordingly.
1501 // However, with auto-versioning the submitted content of the field will just overwrite the corrected values. This leaves a) lost RTEmagic files and b) creates a double reference to the old files.
1502 // The only solution I can come up with is detecting when auto versioning happens, then see if any RTEmagic images was copied and if so make a stupid string-replace of the content !
1503 if ($this->autoVersioningUpdate
=== true) {
1504 if (is_array($this->RTEmagic_copyIndex
[$table][$id][$field])) {
1505 foreach ($this->RTEmagic_copyIndex
[$table][$id][$field] as $oldRTEmagicName => $newRTEmagicName) {
1506 $fieldArray[$field] = str_replace(' src="' . $oldRTEmagicName . '"', ' src="' . $newRTEmagicName . '"', $fieldArray[$field]);
1510 } elseif ($GLOBALS['TCA'][$table]['ctrl']['origUid'] === $field) {
1511 // Allow value for original UID to pass by...
1512 $fieldArray[$field] = $fieldValue;
1516 // Add diff-storage information:
1517 if ($diffStorageFlag && !isset($fieldArray[$GLOBALS['TCA'][$table]['ctrl']['transOrigDiffSourceField']])) {
1518 // If the field is set it would probably be because of an undo-operation - in which case we should not update the field of course...
1519 $fieldArray[$GLOBALS['TCA'][$table]['ctrl']['transOrigDiffSourceField']] = serialize($originalLanguage_diffStorage);
1521 // Checking for RTE-transformations of fields:
1522 $types_fieldConfig = BackendUtility
::getTCAtypes($table, $currentRecord);
1523 $theTypeString = null;
1524 if (is_array($types_fieldConfig)) {
1525 foreach ($types_fieldConfig as $vconf) {
1526 // RTE transformations:
1527 if ($this->dontProcessTransformations ||
!isset($fieldArray[$vconf['field']])) {
1531 // Look for transformation flag:
1532 if ((string)$incomingFieldArray['_TRANSFORM_' . $vconf['field']] === 'RTE') {
1533 if ($theTypeString === null) {
1534 $theTypeString = BackendUtility
::getTCAtypeValue($table, $currentRecord);
1536 $RTEsetup = $this->BE_USER
->getTSConfig('RTE', BackendUtility
::getPagesTSconfig($tscPID));
1537 $thisConfig = BackendUtility
::RTEsetup($RTEsetup['properties'], $table, $vconf['field'], $theTypeString);
1538 $fieldArray[$vconf['field']] = $this->transformRichtextContentToDatabase(
1539 $fieldArray[$vconf['field']], $table, $vconf['field'], $vconf['spec'], $thisConfig, $currentRecord['pid']
1544 // Return fieldArray
1549 * Performs transformation of content from richtext element to database.
1551 * @param string $value Value to transform.
1552 * @param string $table The table name
1553 * @param string $field The field name
1554 * @param array $defaultExtras Default extras configuration of this field - typically "richtext:rte_transform[mode=ts_css]"
1555 * @param array $thisConfig Configuration for RTEs; A mix between TSconfig and others. Configuration for additional transformation information
1556 * @param int $pid PID value of record (true parent page id)
1557 * @return string Transformed content
1559 protected function transformRichtextContentToDatabase($value, $table, $field, $defaultExtras, $thisConfig, $pid)
1561 if ($defaultExtras['rte_transform']) {
1562 $parameters = BackendUtility
::getSpecConfParametersFromArray($defaultExtras['rte_transform']['parameters']);
1563 // There must be a mode set for transformation, this is typically 'ts_css'
1564 if ($parameters['mode']) {
1565 // Initialize transformation:
1566 $parseHTML = GeneralUtility
::makeInstance(RteHtmlParser
::class);
1567 $parseHTML->init($table . ':' . $field, $pid);
1568 // Perform transformation:
1569 $value = $parseHTML->RTE_transform($value, $defaultExtras, 'db', $thisConfig);
1575 /*********************************************
1577 * Evaluation of input values
1579 ********************************************/
1581 * Evaluates a value according to $table/$field settings.
1582 * This function is for real database fields - NOT FlexForm "pseudo" fields.
1583 * NOTICE: Calling this function expects this: 1) That the data is saved! (files are copied and so on) 2) That files registered for deletion IS deleted at the end (with ->removeRegisteredFiles() )
1585 * @param string $table Table name
1586 * @param string $field Field name
1587 * @param string $value Value to be evaluated. Notice, this is the INPUT value from the form. The original value (from any existing record) must be manually looked up inside the function if needed - or taken from $currentRecord array.
1588 * @param string $id The record-uid, mainly - but not exclusively - used for logging
1589 * @param string $status 'update' or 'new' flag
1590 * @param int $realPid The real PID value of the record. For updates, this is just the pid of the record. For new records this is the PID of the page where it is inserted. If $realPid is -1 it means that a new version of the record is being inserted.
1591 * @param int $tscPID TSconfig PID
1592 * @return array Returns the evaluated $value as key "value" in this array. Can be checked with isset($res['value']) ...
1594 public function checkValue($table, $field, $value, $id, $status, $realPid, $tscPID)
1599 // Processing special case of field pages.doktype
1600 if (($table === 'pages' ||
$table === 'pages_language_overlay') && $field === 'doktype') {
1601 // If the user may not use this specific doktype, we issue a warning
1602 if (!($this->admin || GeneralUtility
::inList($this->BE_USER
->groupData
['pagetypes_select'], $value))) {
1603 if ($this->enableLogging
) {
1604 $propArr = $this->getRecordProperties($table, $id);
1605 $this->log($table, $id, 5, 0, 1, 'You cannot change the \'doktype\' of page \'%s\' to the desired value.', 1, array($propArr['header']), $propArr['event_pid']);
1609 if ($status == 'update') {
1610 // This checks 1) if we should check for disallowed tables and 2) if there are records from disallowed tables on the current page
1611 $onlyAllowedTables = isset($GLOBALS['PAGES_TYPES'][$value]['onlyAllowedTables']) ?
$GLOBALS['PAGES_TYPES'][$value]['onlyAllowedTables'] : $GLOBALS['PAGES_TYPES']['default']['onlyAllowedTables'];
1612 if ($onlyAllowedTables) {
1613 $theWrongTables = $this->doesPageHaveUnallowedTables($id, $value);
1614 if ($theWrongTables) {
1615 if ($this->enableLogging
) {
1616 $propArr = $this->getRecordProperties($table, $id);
1617 $this->log($table, $id, 5, 0, 1, '\'doktype\' of page \'%s\' could not be changed because the page contains records from disallowed tables; %s', 2, array($propArr['header'], $theWrongTables), $propArr['event_pid']);
1626 if ((int)$id !== 0) {
1627 // Get current value:
1628 $curValueRec = $this->recordInfo($table, $id, $field);
1629 // isset() won't work here, since values can be NULL
1630 if ($curValueRec !== null && array_key_exists($field, $curValueRec)) {
1631 $curValue = $curValueRec[$field];
1635 // Getting config for the field
1636 $tcaFieldConf = $GLOBALS['TCA'][$table]['columns'][$field]['config'];
1638 // Create $recFID only for those types that need it
1640 $tcaFieldConf['type'] === 'flex'
1641 ||
$tcaFieldConf['type'] === 'group' && ($tcaFieldConf['internal_type'] === 'file' ||
$tcaFieldConf['internal_type'] === 'file_reference')
1643 $recFID = $table . ':' . $id . ':' . $field;
1648 // Perform processing:
1649 $res = $this->checkValue_SW($res, $value, $tcaFieldConf, $table, $id, $curValue, $status, $realPid, $recFID, $field, $this->uploadedFileArray
[$table][$id][$field], $tscPID);
1654 * Branches out evaluation of a field value based on its type as configured in $GLOBALS['TCA']
1655 * Can be called for FlexForm pseudo fields as well, BUT must not have $field set if so.
1657 * @param array $res The result array. The processed value (if any!) is set in the "value" key.
1658 * @param string $value The value to set.
1659 * @param array $tcaFieldConf Field configuration from $GLOBALS['TCA']
1660 * @param string $table Table name
1661 * @param int $id UID of record
1662 * @param mixed $curValue Current value of the field
1663 * @param string $status 'update' or 'new' flag
1664 * @param int $realPid The real PID value of the record. For updates, this is just the pid of the record. For new records this is the PID of the page where it is inserted. If $realPid is -1 it means that a new version of the record is being inserted.
1665 * @param string $recFID Field identifier [table:uid:field] for flexforms
1666 * @param string $field Field name. Must NOT be set if the call is for a flexform field (since flexforms are not allowed within flexforms).
1667 * @param array $uploadedFiles
1668 * @param int $tscPID TSconfig PID
1669 * @param array $additionalData Additional data to be forwarded to sub-processors
1670 * @return array Returns the evaluated $value as key "value" in this array.
1672 public function checkValue_SW($res, $value, $tcaFieldConf, $table, $id, $curValue, $status, $realPid, $recFID, $field, $uploadedFiles, $tscPID, array $additionalData = null)
1674 // Convert to NULL value if defined in TCA
1675 if ($value === null && !empty($tcaFieldConf['eval']) && GeneralUtility
::inList($tcaFieldConf['eval'], 'null')) {
1676 $res = array('value' => null);
1680 switch ($tcaFieldConf['type']) {
1682 $res = $this->checkValueForText($value, $tcaFieldConf);
1685 case 'imageManipulation':
1687 $res['value'] = $value;
1690 $res = $this->checkValueForInput($value, $tcaFieldConf, $table, $id, $realPid, $field);
1693 $res = $this->checkValueForCheck($res, $value, $tcaFieldConf, $table, $id, $realPid, $field);
1696 $res = $this->checkValueForRadio($res, $value, $tcaFieldConf, $table, $id, $realPid, $field);
1700 $res = $this->checkValueForGroupSelect($res, $value, $tcaFieldConf, $table, $id, $curValue, $status, $recFID, $uploadedFiles, $field);
1703 $res = $this->checkValueForInline($res, $value, $tcaFieldConf, $table, $id, $status, $field, $additionalData);
1706 // FlexForms are only allowed for real fields.
1708 $res = $this->checkValueForFlex($res, $value, $tcaFieldConf, $table, $id, $curValue, $status, $realPid, $recFID, $tscPID, $uploadedFiles, $field);
1718 * Evaluate "text" type values.
1720 * @param string $value The value to set.
1721 * @param array $tcaFieldConf Field configuration from TCA
1722 * @return array $res The result array. The processed value (if any!) is set in the "value" key.
1724 protected function checkValueForText($value, $tcaFieldConf)
1726 if (!isset($tcaFieldConf['eval']) ||
$tcaFieldConf['eval'] === '') {
1727 return array('value' => $value);
1729 $cacheId = $this->getFieldEvalCacheIdentifier($tcaFieldConf['eval']);
1730 if ($this->runtimeCache
->has($cacheId)) {
1731 $evalCodesArray = $this->runtimeCache
->get($cacheId);
1733 $evalCodesArray = GeneralUtility
::trimExplode(',', $tcaFieldConf['eval'], true);
1734 $this->runtimeCache
->set($cacheId, $evalCodesArray);
1736 return $this->checkValue_text_Eval($value, $evalCodesArray, $tcaFieldConf['is_in']);
1740 * Evaluate "input" type values.
1742 * @param string $value The value to set.
1743 * @param array $tcaFieldConf Field configuration from TCA
1744 * @param string $table Table name
1745 * @param int $id UID of record
1746 * @param int $realPid The real PID value of the record. For updates, this is just the pid of the record. For new records this is the PID of the page where it is inserted. If $realPid is -1 it means that a new version of the record is being inserted.
1747 * @param string $field Field name
1748 * @return array $res The result array. The processed value (if any!) is set in the "value" key.
1750 protected function checkValueForInput($value, $tcaFieldConf, $table, $id, $realPid, $field)
1752 // Handle native date/time fields
1753 $isDateOrDateTimeField = false;
1756 if (isset($tcaFieldConf['dbType']) && ($tcaFieldConf['dbType'] === 'date' ||
$tcaFieldConf['dbType'] === 'datetime')) {
1757 $isDateOrDateTimeField = true;
1758 $dateTimeFormats = $this->databaseConnection
->getDateTimeFormats($table);
1759 // Convert the date/time into a timestamp for the sake of the checks
1760 $emptyValue = $dateTimeFormats[$tcaFieldConf['dbType']]['empty'];
1761 $format = $dateTimeFormats[$tcaFieldConf['dbType']]['format'];
1762 // At this point in the processing, the timestamps are still based on UTC
1763 $timeZone = new \
DateTimeZone('UTC');
1764 $dateTime = \DateTime
::createFromFormat('!' . $format, $value, $timeZone);
1765 $value = $value === $emptyValue ?
0 : $dateTime->getTimestamp();
1767 // Secures the string-length to be less than max.
1768 if ((int)$tcaFieldConf['max'] > 0) {
1769 $value = $GLOBALS['LANG']->csConvObj
->substr($GLOBALS['LANG']->charSet
, (string)$value, 0, (int)$tcaFieldConf['max']);
1771 // Checking range of value:
1772 // @todo: The "checkbox" option was removed for type=input, this check could be probably relaxed?
1773 if ($tcaFieldConf['range'] && $value != $tcaFieldConf['checkbox'] && (int)$value !== (int)$tcaFieldConf['default']) {
1774 if (isset($tcaFieldConf['range']['upper']) && (int)$value > (int)$tcaFieldConf['range']['upper']) {
1775 $value = $tcaFieldConf['range']['upper'];
1777 if (isset($tcaFieldConf['range']['lower']) && (int)$value < (int)$tcaFieldConf['range']['lower']) {
1778 $value = $tcaFieldConf['range']['lower'];
1782 if (empty($tcaFieldConf['eval'])) {
1783 $res = array('value' => $value);
1785 // Process evaluation settings:
1786 $cacheId = $this->getFieldEvalCacheIdentifier($tcaFieldConf['eval']);
1787 if ($this->runtimeCache
->has($cacheId)) {
1788 $evalCodesArray = $this->runtimeCache
->get($cacheId);
1790 $evalCodesArray = GeneralUtility
::trimExplode(',', $tcaFieldConf['eval'], true);
1791 $this->runtimeCache
->set($cacheId, $evalCodesArray);
1794 $res = $this->checkValue_input_Eval($value, $evalCodesArray, $tcaFieldConf['is_in']);
1796 // Process UNIQUE settings:
1797 // Field is NOT set for flexForms - which also means that uniqueInPid and unique is NOT available for flexForm fields! Also getUnique should not be done for versioning and if PID is -1 ($realPid<0) then versioning is happening...
1798 if ($field && $realPid >= 0 && !empty($res['value'])) {
1799 if (in_array('uniqueInPid', $evalCodesArray, true)) {
1800 $res['value'] = $this->getUnique($table, $field, $res['value'], $id, $realPid);
1802 if ($res['value'] && in_array('unique', $evalCodesArray, true)) {
1803 $res['value'] = $this->getUnique($table, $field, $res['value'], $id);
1808 // Handle native date/time fields
1809 if ($isDateOrDateTimeField) {
1810 // Convert the timestamp back to a date/time
1811 $res['value'] = $res['value'] ?
date($format, $res['value']) : $emptyValue;
1817 * Evaluates 'check' type values.
1819 * @param array $res The result array. The processed value (if any!) is set in the 'value' key.
1820 * @param string $value The value to set.
1821 * @param array $tcaFieldConf Field configuration from TCA
1822 * @param string $table Table name
1823 * @param int $id UID of record
1824 * @param int $realPid The real PID value of the record. For updates, this is just the pid of the record. For new records this is the PID of the page where it is inserted. If $realPid is -1 it means that a new version of the record is being inserted.
1825 * @param string $field Field name
1826 * @return array Modified $res array
1828 protected function checkValueForCheck($res, $value, $tcaFieldConf, $table, $id, $realPid, $field)
1830 $itemC = count($tcaFieldConf['items']);
1834 $maxV = pow(2, $itemC) - 1;
1838 if ($value > $maxV) {
1841 if ($field && $realPid >= 0 && $value > 0 && !empty($tcaFieldConf['eval'])) {
1842 $evalCodesArray = GeneralUtility
::trimExplode(',', $tcaFieldConf['eval'], true);
1843 $otherRecordsWithSameValue = array();
1844 $maxCheckedRecords = 0;
1845 if (in_array('maximumRecordsCheckedInPid', $evalCodesArray, true)) {
1846 $otherRecordsWithSameValue = $this->getRecordsWithSameValue($table, $id, $field, $value, $realPid);
1847 $maxCheckedRecords = (int)$tcaFieldConf['validation']['maximumRecordsCheckedInPid'];
1849 if (in_array('maximumRecordsChecked', $evalCodesArray, true)) {
1850 $otherRecordsWithSameValue = $this->getRecordsWithSameValue($table, $id, $field, $value);
1851 $maxCheckedRecords = (int)$tcaFieldConf['validation']['maximumRecordsChecked'];
1854 // there are more than enough records with value "1" in the DB
1855 // if so, set this value to "0" again
1856 if ($maxCheckedRecords && count($otherRecordsWithSameValue) >= $maxCheckedRecords) {
1858 if ($this->enableLogging
) {
1859 $this->log($table, $id, 5, 0, 1, 'Could not activate checkbox for field "%s". A total of %s record(s) can have this checkbox activated. Uncheck other records first in order to activate the checkbox of this record.', -1, array($GLOBALS['LANG']->sL(BackendUtility
::getItemLabel($table, $field)), $maxCheckedRecords));
1863 $res['value'] = $value;
1868 * Evaluates 'radio' type values.
1870 * @param array $res The result array. The processed value (if any!) is set in the 'value' key.
1871 * @param string $value The value to set.
1872 * @param array $tcaFieldConf Field configuration from TCA
1873 * @param array $table The table of the record
1874 * @param int $id The id of the record
1875 * @param int $pid The pid of the record
1876 * @param string $field The field to check
1877 * @return array Modified $res array
1879 protected function checkValueForRadio($res, $value, $tcaFieldConf, $table, $id, $pid, $field)
1881 if (is_array($tcaFieldConf['items'])) {
1882 foreach ($tcaFieldConf['items'] as $set) {
1883 if ((string)$set[1] === (string)$value) {
1884 $res['value'] = $value;
1890 // if no value was found and an itemsProcFunc is defined, check that for the value
1891 if ($tcaFieldConf['itemsProcFunc'] && empty($res['value'])) {
1892 $processingService = GeneralUtility
::makeInstance(ItemProcessingService
::class);
1893 $processedItems = $processingService->getProcessingItems($table, $pid, $field, $this->checkValue_currentRecord
,
1894 $tcaFieldConf, $tcaFieldConf['items']);
1896 foreach ($processedItems as $set) {
1897 if ((string)$set[1] === (string)$value) {
1898 $res['value'] = $value;
1908 * Evaluates 'group' or 'select' type values.
1910 * @param array $res The result array. The processed value (if any!) is set in the 'value' key.
1911 * @param string $value The value to set.
1912 * @param array $tcaFieldConf Field configuration from TCA
1913 * @param string $table Table name
1914 * @param int $id UID of record
1915 * @param mixed $curValue Current value of the field
1916 * @param string $status 'update' or 'new' flag
1917 * @param string $recFID Field identifier [table:uid:field] for flexforms
1918 * @param array $uploadedFiles
1919 * @param string $field Field name
1920 * @return array Modified $res array
1922 protected function checkValueForGroupSelect($res, $value, $tcaFieldConf, $table, $id, $curValue, $status, $recFID, $uploadedFiles, $field)
1924 // Detecting if value sent is an array and if so, implode it around a comma:
1925 if (is_array($value)) {
1926 $value = implode(',', $value);
1928 // This converts all occurrences of '{' to the byte 123 in the string - this is needed in very rare cases where file names with special characters (e.g. ???, umlaut) gets sent to the server as HTML entities instead of bytes. The error is done only by MSIE, not Mozilla and Opera.
1929 // Anyway, this should NOT disturb anything else:
1930 $value = $this->convNumEntityToByteValue($value);
1931 // When values are sent as group or select they come as comma-separated values which are exploded by this function:
1932 $valueArray = $this->checkValue_group_select_explodeSelectGroupValue($value);
1933 // If multiple is not set, remove duplicates:
1934 if (!$tcaFieldConf['multiple']) {
1935 $valueArray = array_unique($valueArray);
1937 // If an exclusive key is found, discard all others:
1938 if ($tcaFieldConf['type'] == 'select' && $tcaFieldConf['exclusiveKeys']) {
1939 $exclusiveKeys = GeneralUtility
::trimExplode(',', $tcaFieldConf['exclusiveKeys']);
1940 foreach ($valueArray as $index => $key) {
1941 if (in_array($key, $exclusiveKeys, true)) {
1942 $valueArray = array($index => $key);
1947 // This could be a good spot for parsing the array through a validation-function which checks if the values are correct (except that database references are not in their final form - but that is the point, isn't it?)
1948 // NOTE!!! Must check max-items of files before the later check because that check would just leave out file names if there are too many!!
1949 $valueArray = $this->applyFiltersToValues($tcaFieldConf, $valueArray);
1950 // Checking for select / authMode, removing elements from $valueArray if any of them is not allowed!
1951 if ($tcaFieldConf['type'] == 'select' && $tcaFieldConf['authMode']) {
1952 $preCount = count($valueArray);
1953 foreach ($valueArray as $index => $key) {
1954 if (!$this->BE_USER
->checkAuthMode($table, $field, $key, $tcaFieldConf['authMode'])) {
1955 unset($valueArray[$index]);
1958 // During the check it turns out that the value / all values were removed - we respond by simply returning an empty array so nothing is written to DB for this field.
1959 if ($preCount && empty($valueArray)) {
1964 if ($tcaFieldConf['type'] == 'group') {
1965 switch ($tcaFieldConf['internal_type']) {
1966 case 'file_reference':
1969 $valueArray = $this->checkValue_group_select_file($valueArray, $tcaFieldConf, $curValue, $uploadedFiles, $status, $table, $id, $recFID);
1972 $valueArray = $this->checkValue_group_select_processDBdata($valueArray, $tcaFieldConf, $id, $status, 'group', $table, $field);
1976 // For select types which has a foreign table attached:
1977 $unsetResult = false;
1978 if ($tcaFieldConf['type'] == 'select' && $tcaFieldConf['foreign_table']) {
1979 // check, if there is a NEW... id in the value, that should be substituted later
1980 if (strpos($value, 'NEW') !== false) {
1981 $this->remapStackRecords
[$table][$id] = array('remapStackIndex' => count($this->remapStack
));
1982 $this->addNewValuesToRemapStackChildIds($valueArray);
1983 $this->remapStack
[] = array(
1984 'func' => 'checkValue_group_select_processDBdata',
1985 'args' => array($valueArray, $tcaFieldConf, $id, $status, 'select', $table, $field),
1986 'pos' => array('valueArray' => 0, 'tcaFieldConf' => 1, 'id' => 2, 'table' => 5),
1989 $unsetResult = true;
1991 $valueArray = $this->checkValue_group_select_processDBdata($valueArray, $tcaFieldConf, $id, $status, 'select', $table, $field);
1994 if (!$unsetResult) {
1995 $newVal = $this->checkValue_checkMax($tcaFieldConf, $valueArray);
1996 $res['value'] = $this->castReferenceValue(implode(',', $newVal), $tcaFieldConf);
1998 unset($res['value']);
2004 * Applies the filter methods from a column's TCA configuration to a value array.
2006 * @param array $tcaFieldConfiguration
2007 * @param array $values
2008 * @return array|mixed
2009 * @throws \RuntimeException
2011 protected function applyFiltersToValues(array $tcaFieldConfiguration, array $values)
2013 if (empty($tcaFieldConfiguration['filter']) ||
!is_array($tcaFieldConfiguration['filter'])) {
2016 foreach ($tcaFieldConfiguration['filter'] as $filter) {
2017 if (empty($filter['userFunc'])) {
2020 $parameters = $filter['parameters'] ?
: array();
2021 $parameters['values'] = $values;
2022 $parameters['tcaFieldConfig'] = $tcaFieldConfiguration;
2023 $values = GeneralUtility
::callUserFunction($filter['userFunc'], $parameters, $this);
2024 if (!is_array($values)) {
2025 throw new \
RuntimeException('Failed calling filter userFunc.', 1336051942);
2032 * Handling files for group/select function
2034 * @param array $valueArray Array of incoming file references. Keys are numeric, values are files (basically, this is the exploded list of incoming files)
2035 * @param array $tcaFieldConf Configuration array from TCA of the field
2036 * @param string $curValue Current value of the field
2037 * @param array $uploadedFileArray Array of uploaded files, if any
2038 * @param string $status 'update' or 'new' flag
2039 * @param string $table tablename of record
2040 * @param int $id UID of record
2041 * @param string $recFID Field identifier [table:uid:field] for flexforms
2042 * @return array Modified value array
2044 * @throws \RuntimeException
2046 public function checkValue_group_select_file($valueArray, $tcaFieldConf, $curValue, $uploadedFileArray, $status, $table, $id, $recFID)
2048 // If file handling should NOT be bypassed, do processing:
2049 if (!$this->bypassFileHandling
) {
2050 // If any files are uploaded, add them to value array
2051 // Numeric index means that there are multiple files
2052 if (isset($uploadedFileArray[0])) {
2053 $uploadedFiles = $uploadedFileArray;
2055 // There is only one file
2056 $uploadedFiles = array($uploadedFileArray);
2058 foreach ($uploadedFiles as $uploadedFileArray) {
2059 if (!empty($uploadedFileArray['name']) && $uploadedFileArray['tmp_name'] !== 'none') {
2060 $valueArray[] = $uploadedFileArray['tmp_name'];
2061 $this->alternativeFileName
[$uploadedFileArray['tmp_name']] = $uploadedFileArray['name'];
2064 // Creating fileFunc object.
2065 if (!$this->fileFunc
) {
2066 $this->fileFunc
= GeneralUtility
::makeInstance(BasicFileUtility
::class);
2068 // Setting permitted extensions.
2069 $all_files = array();
2070 $all_files['webspace']['allow'] = $tcaFieldConf['allowed'];
2071 $all_files['webspace']['deny'] = $tcaFieldConf['disallowed'] ?
: '*';
2072 $all_files['ftpspace'] = $all_files['webspace'];
2073 $this->fileFunc
->init('', $all_files);
2075 // If there is an upload folder defined:
2076 if ($tcaFieldConf['uploadfolder'] && $tcaFieldConf['internal_type'] == 'file') {
2077 $currentFilesForHistory = null;
2078 // If filehandling should NOT be bypassed, do processing:
2079 if (!$this->bypassFileHandling
) {
2081 $propArr = $this->getRecordProperties($table, $id);
2082 // Get destrination path:
2083 $dest = $this->destPathFromUploadFolder($tcaFieldConf['uploadfolder']);
2084 // If we are updating:
2085 if ($status == 'update') {
2086 // Traverse the input values and convert to absolute filenames in case the update happens to an autoVersionized record.
2087 // Background: This is a horrible workaround! The problem is that when a record is auto-versionized the files of the record get copied and therefore get new names which is overridden with the names from the original record in the incoming data meaning both lost files and double-references!
2088 // The only solution I could come up with (except removing support for managing files when autoversioning) was to convert all relative files to absolute names so they are copied again (and existing files deleted). This should keep references intact but means that some files are copied, then deleted after being copied _again_.
2089 // Actually, the same problem applies to database references in case auto-versioning would include sub-records since in such a case references are remapped - and they would be overridden due to the same principle then.
2090 // Illustration of the problem comes here:
2091 // We have a record 123 with a file logo.gif. We open and edit the files header in a workspace. So a new version is automatically made.
2092 // The versions uid is 456 and the file is copied to "logo_01.gif". But the form data that we sent was based on uid 123 and hence contains the filename "logo.gif" from the original.
2093 // The file management code below will do two things: First it will blindly accept "logo.gif" as a file attached to the record (thus creating a double reference) and secondly it will find that "logo_01.gif" was not in the incoming filelist and therefore should be deleted.
2094 // If we prefix the incoming file "logo.gif" with its absolute path it will be seen as a new file added. Thus it will be copied to "logo_02.gif". "logo_01.gif" will still be deleted but since the files are the same the difference is zero - only more processing and file copying for no reason. But it will work.
2095 if ($this->autoVersioningUpdate
=== true) {
2096 foreach ($valueArray as $key => $theFile) {
2097 // If it is an already attached file...
2098 if ($theFile === basename($theFile)) {
2099 $valueArray[$key] = PATH_site
. $tcaFieldConf['uploadfolder'] . '/' . $theFile;
2103 // Finding the CURRENT files listed, either from MM or from the current record.
2104 $theFileValues = array();
2105 // If MM relations for the files also!
2106 if ($tcaFieldConf['MM']) {
2107 $dbAnalysis = $this->createRelationHandlerInstance();
2108 /** @var $dbAnalysis RelationHandler */
2109 $dbAnalysis->start('', 'files', $tcaFieldConf['MM'], $id);
2110 foreach ($dbAnalysis->itemArray
as $item) {
2112 $theFileValues[] = $item['id'];
2116 $theFileValues = GeneralUtility
::trimExplode(',', $curValue, true);
2118 $currentFilesForHistory = implode(',', $theFileValues);
2119 // DELETE files: If existing files were found, traverse those and register files for deletion which has been removed:
2120 if (!empty($theFileValues)) {
2121 // Traverse the input values and for all input values which match an EXISTING value, remove the existing from $theFileValues array (this will result in an array of all the existing files which should be deleted!)
2122 foreach ($valueArray as $key => $theFile) {
2123 if ($theFile && !strstr(GeneralUtility
::fixWindowsFilePath($theFile), '/')) {
2124 $theFileValues = ArrayUtility
::removeArrayEntryByValue($theFileValues, $theFile);
2127 // This array contains the filenames in the uploadfolder that should be deleted:
2128 foreach ($theFileValues as $key => $theFile) {
2129 $theFile = trim($theFile);
2130 if (@is_file
(($dest . '/' . $theFile))) {
2131 $this->removeFilesStore
[] = $dest . '/' . $theFile;
2132 } elseif ($this->enableLogging
&& $theFile) {
2133 $this->log($table, $id, 5, 0, 1, 'Could not delete file \'%s\' (does not exist). (%s)', 10, array($dest . '/' . $theFile, $recFID), $propArr['event_pid']);
2138 // Traverse the submitted values:
2139 foreach ($valueArray as $key => $theFile) {
2141 $maxSize = (int)$tcaFieldConf['max_size'];
2142 // Must be cleared. Else a faulty fileref may be inserted if the below code returns an error!
2144 // a FAL file was added, now resolve the file object and get the absolute path
2145 // @todo in future versions this needs to be modified to handle FAL objects natively
2146 if (!empty($theFile) && MathUtility
::canBeInterpretedAsInteger($theFile)) {
2147 $fileObject = ResourceFactory
::getInstance()->getFileObject($theFile);
2148 $theFile = $fileObject->getForLocalProcessing(false);
2150 // NEW FILES? If the value contains '/' it indicates, that the file
2151 // is new and should be added to the uploadsdir (whether its absolute or relative does not matter here)
2152 if (strstr(GeneralUtility
::fixWindowsFilePath($theFile), '/')) {
2153 // Check various things before copying file:
2154 // File and destination must exist
2155 if (@is_dir
($dest) && (@is_file
($theFile) || @is_uploaded_file
($theFile))) {
2157 if (is_uploaded_file($theFile) && $theFile == $uploadedFileArray['tmp_name']) {
2158 $fileSize = $uploadedFileArray['size'];
2160 $fileSize = filesize($theFile);
2163 if (!$maxSize ||
$fileSize <= $maxSize * 1024) {
2164 // Prepare filename:
2165 $theEndFileName = isset($this->alternativeFileName
[$theFile]) ?
$this->alternativeFileName
[$theFile] : $theFile;
2166 $fI = GeneralUtility
::split_fileref($theEndFileName);
2167 // Check for allowed extension:
2168 if ($this->fileFunc
->checkIfAllowed($fI['fileext'], $dest, $theEndFileName)) {
2169 $theDestFile = $this->fileFunc
->getUniqueName($this->fileFunc
->cleanFileName($fI['file']), $dest);
2170 // If we have a unique destination filename, then write the file:
2172 GeneralUtility
::upload_copy_move($theFile, $theDestFile);
2173 // Hook for post-processing the upload action
2174 if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processUpload'])) {
2175 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processUpload'] as $classRef) {
2176 $hookObject = GeneralUtility
::getUserObj($classRef);
2177 if (!$hookObject instanceof DataHandlerProcessUploadHookInterface
) {
2178 throw new \
UnexpectedValueException('$hookObject must implement interface TYPO3\\CMS\\Core\\DataHandling\\DataHandlerProcessUploadHookInterface', 1279962349);
2180 $hookObject->processUpload_postProcessAction($theDestFile, $this);
2183 $this->copiedFileMap
[$theFile] = $theDestFile;
2185 if ($this->enableLogging
&& !@is_file
($theDestFile)) {
2186 $this->log($table, $id, 5, 0, 1, 'Copying file \'%s\' failed!: The destination path (%s) may be write protected. Please make it write enabled!. (%s)', 16, array($theFile, dirname($theDestFile), $recFID), $propArr['event_pid']);
2188 } elseif ($this->enableLogging
) {
2189 $this->log($table, $id, 5, 0, 1, 'Copying file \'%s\' failed!: No destination file (%s) possible!. (%s)', 11, array($theFile, $theDestFile, $recFID), $propArr['event_pid']);
2191 } elseif ($this->enableLogging
) {
2192 $this->log($table, $id, 5, 0, 1, 'File extension \'%s\' not allowed. (%s)', 12, array($fI['fileext'], $recFID), $propArr['event_pid']);
2194 } elseif ($this->enableLogging
) {
2195 $this->log($table, $id, 5, 0, 1, 'Filesize (%s) of file \'%s\' exceeds limit (%s). (%s)', 13, array(GeneralUtility
::formatSize($fileSize), $theFile, GeneralUtility
::formatSize($maxSize * 1024), $recFID), $propArr['event_pid']);
2197 } elseif ($this->enableLogging
) {
2198 $this->log($table, $id, 5, 0, 1, 'The destination (%s) or the source file (%s) does not exist. (%s)', 14, array($dest, $theFile, $recFID), $propArr['event_pid']);
2200 // If the destination file was created, we will set the new filename in the value array, otherwise unset the entry in the value array!
2201 if (@is_file
($theDestFile)) {
2202 $info = GeneralUtility
::split_fileref($theDestFile);
2203 // The value is set to the new filename
2204 $valueArray[$key] = $info['file'];
2206 // The value is set to the new filename
2207 unset($valueArray[$key]);
2212 // If MM relations for the files, we will set the relations as MM records and change the valuearray to contain a single entry with a count of the number of files!
2213 if ($tcaFieldConf['MM']) {
2214 /** @var $dbAnalysis RelationHandler */
2215 $dbAnalysis = $this->createRelationHandlerInstance();
2217 $dbAnalysis->tableArray
['files'] = array();
2218 foreach ($valueArray as $key => $theFile) {
2220 $dbAnalysis->itemArray
[]['id'] = $theFile;
2222 if ($status == 'update') {
2223 $dbAnalysis->writeMM($tcaFieldConf['MM'], $id, 0);
2224 $newFiles = implode(',', $dbAnalysis->getValueArray());
2225 list(, , $recFieldName) = explode(':', $recFID);
2226 if ($currentFilesForHistory != $newFiles) {
2227 $this->mmHistoryRecords
[$table . ':' . $id]['oldRecord'][$recFieldName] = $currentFilesForHistory;
2228 $this->mmHistoryRecords
[$table . ':' . $id]['newRecord'][$recFieldName] = $newFiles;
2230 $this->mmHistoryRecords
[$table . ':' . $id]['oldRecord'][$recFieldName] = '';
2231 $this->mmHistoryRecords
[$table . ':' . $id]['newRecord'][$recFieldName] = '';
2234 $this->dbAnalysisStore
[] = array($dbAnalysis, $tcaFieldConf['MM'], $id, 0);
2236 $valueArray = $dbAnalysis->countItems();
2239 if (!empty($valueArray)) {
2240 // If filehandling should NOT be bypassed, do processing:
2241 if (!$this->bypassFileHandling
) {
2243 $propArr = $this->getRecordProperties($table, $id);
2244 foreach ($valueArray as &$theFile) {
2245 // FAL handling: it's a UID, thus it is resolved to the absolute path
2246 if (!empty($theFile) && MathUtility
::canBeInterpretedAsInteger($theFile)) {
2247 $fileObject = ResourceFactory
::getInstance()->getFileObject($theFile);
2248 $theFile = $fileObject->getForLocalProcessing(false);
2250 if ($this->alternativeFilePath
[$theFile]) {
2251 // If alternative File Path is set for the file, then it was an import
2252 // don't import the file if it already exists
2253 if (@is_file
((PATH_site
. $this->alternativeFilePath
[$theFile]))) {
2254 $theFile = PATH_site
. $this->alternativeFilePath
[$theFile];
2255 } elseif (@is_file
($theFile)) {
2256 $dest = dirname(PATH_site
. $this->alternativeFilePath
[$theFile]);
2257 if (!@is_dir
($dest)) {
2258 GeneralUtility
::mkdir_deep(PATH_site
, dirname($this->alternativeFilePath
[$theFile]) . '/');
2261 $maxSize = (int)$tcaFieldConf['max_size'];
2262 // Must be cleared. Else a faulty fileref may be inserted if the below code returns an error!
2264 $fileSize = filesize($theFile);
2266 if (!$maxSize ||
$fileSize <= $maxSize * 1024) {
2267 // Prepare filename:
2268 $theEndFileName = isset($this->alternativeFileName
[$theFile]) ?
$this->alternativeFileName
[$theFile] : $theFile;
2269 $fI = GeneralUtility
::split_fileref($theEndFileName);
2270 // Check for allowed extension:
2271 if ($this->fileFunc
->checkIfAllowed($fI['fileext'], $dest, $theEndFileName)) {
2272 $theDestFile = PATH_site
. $this->alternativeFilePath
[$theFile];
2275 GeneralUtility
::upload_copy_move($theFile, $theDestFile);
2276 $this->copiedFileMap
[$theFile] = $theDestFile;
2278 if ($this->enableLogging
&& !@is_file
($theDestFile)) {
2279 $this->log($table, $id, 5, 0, 1, 'Copying file \'%s\' failed!: The destination path (%s) may be write protected. Please make it write enabled!. (%s)', 16, array($theFile, dirname($theDestFile), $recFID), $propArr['event_pid']);
2281 } elseif ($this->enableLogging
) {
2282 $this->log($table, $id, 5, 0, 1, 'Copying file \'%s\' failed!: No destination file (%s) possible!. (%s)', 11, array($theFile, $theDestFile, $recFID), $propArr['event_pid']);
2284 } elseif ($this->enableLogging
) {
2285 $this->log($table, $id, 5, 0, 1, 'File extension \'%s\' not allowed. (%s)', 12, array($fI['fileext'], $recFID), $propArr['event_pid']);
2287 } elseif ($this->enableLogging
) {
2288 $this->log($table, $id, 5, 0, 1, 'Filesize (%s) of file \'%s\' exceeds limit (%s). (%s)', 13, array(GeneralUtility
::formatSize($fileSize), $theFile, GeneralUtility
::formatSize($maxSize * 1024), $recFID), $propArr['event_pid']);
2290 // If the destination file was created, we will set the new filename in the value array, otherwise unset the entry in the value array!
2291 if (@is_file
($theDestFile)) {
2292 // The value is set to the new filename
2293 $theFile = $theDestFile;
2295 // The value is set to the new filename
2300 if (!empty($theFile)) {
2301 $theFile = GeneralUtility
::fixWindowsFilePath($theFile);
2302 if (GeneralUtility
::isFirstPartOfStr($theFile, PATH_site
)) {
2303 $theFile = PathUtility
::stripPathSitePrefix($theFile);
2315 * Evaluates 'flex' type values.
2317 * @param array $res The result array. The processed value (if any!) is set in the 'value' key.
2318 * @param string|array $value The value to set.
2319 * @param array $tcaFieldConf Field configuration from TCA
2320 * @param string $table Table name
2321 * @param int $id UID of record
2322 * @param mixed $curValue Current value of the field
2323 * @param string $status 'update' or 'new' flag
2324 * @param int $realPid The real PID value of the record. For updates, this is just the pid of the record. For new records this is the PID of the page where it is inserted. If $realPid is -1 it means that a new version of the record is being inserted.
2325 * @param string $recFID Field identifier [table:uid:field] for flexforms
2326 * @param int $tscPID TSconfig PID
2327 * @param array $uploadedFiles Uploaded files for the field
2328 * @param string $field Field name
2329 * @return array Modified $res array
2331 protected function checkValueForFlex($res, $value, $tcaFieldConf, $table, $id, $curValue, $status, $realPid, $recFID, $tscPID, $uploadedFiles, $field)
2333 if (is_array($value)) {
2334 // This value is necessary for flex form processing to happen on flexform fields in page records when they are copied.
2335 // Problem: when copying a page, flexform XML comes along in the array for the new record - but since $this->checkValue_currentRecord does not have a uid or pid for that
2336 // sake, the BackendUtility::getFlexFormDS() function returns no good DS. For new records we do know the expected PID so therefore we send that with this special parameter.
2337 // Only active when larger than zero.
2338 $newRecordPidValue = $status == 'new' ?
$realPid : 0;
2339 // Get current value array:
2340 $dataStructArray = BackendUtility
::getFlexFormDS($tcaFieldConf, $this->checkValue_currentRecord
, $table, $field, true, $newRecordPidValue);
2341 $currentValueArray = (string)$curValue !== '' ? GeneralUtility
::xml2array($curValue) : array();
2342 if (!is_array($currentValueArray)) {
2343 $currentValueArray = array();
2345 // Remove all old meta for languages...
2346 // Evaluation of input values:
2347 $value['data'] = $this->checkValue_flex_procInData($value['data'], $currentValueArray['data'], $uploadedFiles['data'], $dataStructArray, array($table, $id, $curValue, $status, $realPid, $recFID, $tscPID));
2348 // Create XML from input value:
2349 $xmlValue = $this->checkValue_flexArray2Xml($value, true);
2351 // Here we convert the currently submitted values BACK to an array, then merge the two and then BACK to XML again. This is needed to ensure the charsets are the same
2352 // (provided that the current value was already stored IN the charset that the new value is converted to).
2353 $arrValue = GeneralUtility
::xml2array($xmlValue);
2355 if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['checkFlexFormValue'])) {
2356 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['checkFlexFormValue'] as $classRef) {
2357 $hookObject = GeneralUtility
::getUserObj($classRef);
2358 if (method_exists($hookObject, 'checkFlexFormValue_beforeMerge')) {
2359 $hookObject->checkFlexFormValue_beforeMerge($this, $currentValueArray, $arrValue);
2364 ArrayUtility
::mergeRecursiveWithOverrule($currentValueArray, $arrValue);
2365 $xmlValue = $this->checkValue_flexArray2Xml($currentValueArray, true);
2367 // Action commands (sorting order and removals of elements) for flexform sections,
2368 // see FormEngine for the use of this GP parameter
2369 $actionCMDs = GeneralUtility
::_GP('_ACTION_FLEX_FORMdata');
2370 if (is_array($actionCMDs[$table][$id][$field]['data'])) {
2371 $arrValue = GeneralUtility
::xml2array($xmlValue);
2372 $this->_ACTION_FLEX_FORMdata($arrValue['data'], $actionCMDs[$table][$id][$field]['data']);
2373 $xmlValue = $this->checkValue_flexArray2Xml($arrValue, true);
2375 // Create the value XML:
2377 $res['value'] .= $xmlValue;
2380 $res['value'] = $value;
2387 * Converts an array to FlexForm XML
2389 * @param array $array Array with FlexForm data
2390 * @param bool $addPrologue If set, the XML prologue is returned as well.
2391 * @return string Input array converted to XML
2393 public function checkValue_flexArray2Xml($array, $addPrologue = false)
2395 /** @var $flexObj FlexFormTools */
2396 $flexObj = GeneralUtility
::makeInstance(FlexFormTools
::class);
2397 return $flexObj->flexArray2Xml($array, $addPrologue);
2401 * Actions for flex form element (move, delete)
2402 * allows to remove and move flexform sections
2404 * @param array $valueArray by reference
2405 * @param array $actionCMDs
2407 protected function _ACTION_FLEX_FORMdata(&$valueArray, $actionCMDs)
2409 if (!is_array($valueArray) ||
!is_array($actionCMDs)) {
2413 foreach ($actionCMDs as $key => $value) {
2414 if ($key == '_ACTION') {
2415 // First, check if there are "commands":
2416 if (current($actionCMDs[$key]) === '') {
2420 asort($actionCMDs[$key]);
2421 $newValueArray = array();
2422 foreach ($actionCMDs[$key] as $idx => $order) {
2423 if (substr($idx, 0, 3) == 'ID-') {
2424 $idx = $this->newIndexMap
[$idx];
2426 // Just one reflection here: It is clear that when removing elements from a flexform, then we will get lost files unless we act on this delete operation by traversing and deleting files that were referred to.
2427 if ($order != 'DELETE') {
2428 $newValueArray[$idx] = $valueArray[$idx];
2430 unset($valueArray[$idx]);
2432 $valueArray = $valueArray +
$newValueArray;
2433 } elseif (is_array($actionCMDs[$key]) && isset($valueArray[$key])) {
2434 $this->_ACTION_FLEX_FORMdata($valueArray[$key], $actionCMDs[$key]);
2440 * Evaluates 'inline' type values.
2441 * (partly copied from the select_group function on this issue)
2443 * @param array $res The result array. The processed value (if any!) is set in the 'value' key.
2444 * @param string $value The value to set.
2445 * @param array $tcaFieldConf Field configuration from TCA
2446 * @param array $PP Additional parameters in a numeric array: $table,$id,$curValue,$status,$realPid,$recFID
2447 * @param string $field Field name
2448 * @param array $additionalData Additional data to be forwarded to sub-processors
2449 * @return array Modified $res array
2451 public function checkValue_inline($res, $value, $tcaFieldConf, $PP, $field, array $additionalData = null)
2453 list($table, $id, , $status) = $PP;
2454 $this->checkValueForInline($res, $value, $tcaFieldConf, $table, $id, $status, $field, $additionalData);
2458 * Evaluates 'inline' type values.
2459 * (partly copied from the select_group function on this issue)
2461 * @param array $res The result array. The processed value (if any!) is set in the 'value' key.
2462 * @param string $value The value to set.
2463 * @param array $tcaFieldConf Field configuration from TCA
2464 * @param string $table Table name
2465 * @param int $id UID of record
2466 * @param string $status 'update' or 'new' flag
2467 * @param string $field Field name
2468 * @param array $additionalData Additional data to be forwarded to sub-processors
2469 * @return array Modified $res array
2471 public function checkValueForInline($res, $value, $tcaFieldConf, $table, $id, $status, $field, array $additionalData = null)
2473 if (!$tcaFieldConf['foreign_table']) {
2474 // Fatal error, inline fields should always have a foreign_table defined
2477 // When values are sent they come as comma-separated values which are exploded by this function:
2478 $valueArray = GeneralUtility
::trimExplode(',', $value);
2479 // Remove duplicates: (should not be needed)
2480 $valueArray = array_unique($valueArray);
2481 // Example for received data:
2482 // $value = 45,NEW4555fdf59d154,12,123
2483 // We need to decide whether we use the stack or can save the relation directly.
2484 if (strpos($value, 'NEW') !== false ||
!MathUtility
::canBeInterpretedAsInteger($id)) {
2485 $this->remapStackRecords
[$table][$id] = array('remapStackIndex' => count($this->remapStack
));
2486 $this->addNewValuesToRemapStackChildIds($valueArray);
2487 $this->remapStack
[] = array(
2488 'func' => 'checkValue_inline_processDBdata',
2489 'args' => array($valueArray, $tcaFieldConf, $id, $status, $table, $field, $additionalData),
2490 'pos' => array('valueArray' => 0, 'tcaFieldConf' => 1, 'id' => 2, 'table' => 4),
2491 'additionalData' => $additionalData,
2494 unset($res['value']);
2495 } elseif ($value || MathUtility
::canBeInterpretedAsInteger($id)) {
2496 $res['value'] = $this->checkValue_inline_processDBdata($valueArray, $tcaFieldConf, $id, $status, $table, $field, $additionalData);
2502 * Checks if a fields has more items than defined via TCA in maxitems.
2503 * If there are more items than allowd, the item list is truncated to the defined number.
2505 * @param array $tcaFieldConf Field configuration from TCA
2506 * @param array $valueArray Current value array of items
2507 * @return array The truncated value array of items
2509 public function checkValue_checkMax($tcaFieldConf, $valueArray)
2511 // BTW, checking for min and max items here does NOT make any sense when MM is used because the above function calls will just return an array with a single item (the count) if MM is used... Why didn't I perform the check before? Probably because we could not evaluate the validity of record uids etc... Hmm...
2512 $valueArrayC = count($valueArray);
2513 // NOTE to the comment: It's not really possible to check for too few items, because you must then determine first, if the field is actual used regarding the CType.
2514 $maxI = isset($tcaFieldConf['maxitems']) ?
(int)$tcaFieldConf['maxitems'] : 1;
2515 if ($valueArrayC > $maxI) {
2516 $valueArrayC = $maxI;
2518 // Checking for not too many elements
2519 // Dumping array to list
2521 foreach ($valueArray as $nextVal) {
2522 if ($valueArrayC == 0) {
2526 $newVal[] = $nextVal;
2531 /*********************************************
2533 * Helper functions for evaluation functions.
2535 ********************************************/
2537 * Gets a unique value for $table/$id/$field based on $value
2539 * @param string $table Table name
2540 * @param string $field Field name for which $value must be unique
2541 * @param string $value Value string.
2542 * @param int $id UID to filter out in the lookup (the record itself...)
2543 * @param int $newPid If set, the value will be unique for this PID
2544 * @return string Modified value (if not-unique). Will be the value appended with a number (until 100, then the function just breaks).
2546 public function getUnique($table, $field, $value, $id, $newPid = 0)
2552 $whereAdd .= ' AND pid=' . (int)$newPid;
2554 $whereAdd .= ' AND pid>=0';
2556 // "AND pid>=0" for versioning
2557 $whereAdd .= $this->deleteClause($table);
2558 // If the field is configured in TCA, proceed:
2559 if (is_array($GLOBALS['TCA'][$table]) && is_array($GLOBALS['TCA'][$table]['columns'][$field])) {
2560 // Look for a record which might already have the value:
2561 $res = $this->databaseConnection
->exec_SELECTquery('uid', $table, $field . '=' . $this->databaseConnection
->fullQuoteStr($value, $table) . ' AND uid<>' . (int)$id . $whereAdd);
2563 // For as long as records with the test-value existing, try again (with incremented numbers appended).
2564 while ($this->databaseConnection
->sql_num_rows($res)) {
2565 $newValue = $value . $counter;
2566 $res = $this->databaseConnection
->exec_SELECTquery('uid', $table, $field . '=' . $this->databaseConnection
->fullQuoteStr($newValue, $table) . ' AND uid<>' . (int)$id . $whereAdd);
2568 if ($counter > 100) {
2572 $this->databaseConnection
->sql_free_result($res);
2573 // If the new value is there:
2574 $value = $newValue !== '' ?
$newValue : $value;
2580 * gets all records that have the same value in a field
2581 * excluding the given uid
2583 * @param string $tableName Table name
2584 * @param int $uid UID to filter out in the lookup (the record itself...)
2585 * @param string $fieldName Field name for which $value must be unique
2586 * @param string $value Value string.
2587 * @param int $pageId If set, the value will be unique for this PID
2590 public function getRecordsWithSameValue($tableName, $uid, $fieldName, $value, $pageId = 0)
2593 if (!empty($GLOBALS['TCA'][$tableName]['columns'][$fieldName])) {
2595 $pageId = (int)$pageId;
2596 $whereStatement = ' AND uid <> ' . $uid . ' AND ' . ($pageId ?
'pid = ' . $pageId : 'pid >= 0');
2597 $result = BackendUtility
::getRecordsByField($tableName, $fieldName, $value, $whereStatement);
2603 * @param string $value The field value to be evaluated
2604 * @param array $evalArray Array of evaluations to traverse.
2605 * @param string $is_in The "is_in" value of the field configuration from TCA
2608 public function checkValue_text_Eval($value, $evalArray, $is_in)
2612 foreach ($evalArray as $func) {
2615 $value = trim($value);
2623 if (isset($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tce']['formevals'][$func])) {
2624 if (class_exists($func)) {
2625 $evalObj = GeneralUtility
::makeInstance($func);
2626 if (method_exists($evalObj, 'evaluateFieldValue')) {
2627 $value = $evalObj->evaluateFieldValue($value, $is_in, $set);
2634 $res['value'] = $value;
2640 * Evaluation of 'input'-type values based on 'eval' list
2642 * @param string $value Value to evaluate
2643 * @param array $evalArray Array of evaluations to traverse.
2644 * @param string $is_in Is-in string for 'is_in' evaluation
2645 * @return array Modified $value in key 'value' or empty array
2647 public function checkValue_input_Eval($value, $evalArray, $is_in)
2651 foreach ($evalArray as $func) {
2657 $value = (int)$value;
2661 $value = (int)$value;
2662 if ($value > 0 && !$this->dontProcessTransformations
) {
2663 $value -= date('Z', $value);
2667 $value = preg_replace('/[^0-9,\\.-]/', '', $value);
2668 $negative = $value[0] === '-';
2669 $value = strtr($value, array(',' => '.', '-' => ''));
2670 if (strpos($value, '.') === false) {
2673 $valueArray = explode('.', $value);
2674 $dec = array_pop($valueArray);
2675 $value = join('', $valueArray) . '.' . $dec;
2679 $value = number_format($value, 2, '.', '');
2682 if (strlen($value) != 32) {
2687 $value = trim($value);
2690 $value = $GLOBALS['LANG']->csConvObj
->conv_case($GLOBALS['LANG']->charSet
, $value, 'toUpper');
2693 $value = $GLOBALS['LANG']->csConvObj
->conv_case($GLOBALS['LANG']->charSet
, $value, 'toLower');
2696 if (!isset($value) ||
$value === '') {
2701 $c = strlen($value);
2704 for ($a = 0; $a < $c; $a++
) {
2705 $char = substr($value, $a, 1);
2706 if (strpos($is_in, $char) !== false) {
2714 $value = str_replace(' ', '', $value);
2717 $value = preg_replace('/[^a-zA-Z]/', '', $value);
2720 $value = preg_replace('/[^0-9]/', '', $value);
2723 $value = preg_replace('/[^a-zA-Z0-9]/', '', $value);
2726 $value = preg_replace('/[^a-zA-Z0-9_-]/', '', $value);
2729 if (!preg_match('/^[a-z0-9.\\-]*$/i', $value)) {
2730 $value = GeneralUtility
::idnaEncode($value);
2734 $this->checkValue_input_ValidateEmail($value, $set);
2737 if (isset($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tce']['formevals'][$func])) {
2738 if (class_exists($func)) {
2739 $evalObj = GeneralUtility
::makeInstance($func);
2740 if (method_exists($evalObj, 'evaluateFieldValue')) {
2741 $value = $evalObj->evaluateFieldValue($value, $is_in, $set);
2748 $res['value'] = $value;
2754 * If $value is not a valid e-mail address,
2755 * $set will be set to false and a flash error
2756 * message will be added
2758 * @param string $value Value to evaluate
2759 * @param bool $set TRUE if an update should be done
2760 * @throws \InvalidArgumentException
2761 * @throws \TYPO3\CMS\Core\Exception
2764 protected function checkValue_input_ValidateEmail($value, &$set)
2766 if (GeneralUtility
::validEmail($value)) {
2771 /** @var FlashMessage $message */
2772 $message = GeneralUtility
::makeInstance(FlashMessage
::class,
2773 sprintf($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xlf:error.invalidEmail'), $value),
2774 '', // header is optional
2775 FlashMessage
::ERROR
,
2776 true // whether message should be stored in session
2778 /** @var $flashMessageService FlashMessageService */
2779 $flashMessageService = GeneralUtility
::makeInstance(FlashMessageService
::class);
2780 $flashMessageService->getMessageQueueByIdentifier()->enqueue($message);
2784 * Returns data for group/db and select fields
2786 * @param array $valueArray Current value array
2787 * @param array $tcaFieldConf TCA field config
2788 * @param int $id Record id, used for look-up of MM relations (local_uid)
2789 * @param string $status Status string ('update' or 'new')
2790 * @param string $type The type, either 'select', 'group' or 'inline'
2791 * @param string $currentTable Table name, needs to be passed to \TYPO3\CMS\Core\Database\RelationHandler
2792 * @param string $currentField field name, needs to be set for writing to sys_history
2793 * @return array Modified value array
2795 public function checkValue_group_select_processDBdata($valueArray, $tcaFieldConf, $id, $status, $type, $currentTable, $currentField)
2797 $tables = $type == 'group' ?
$tcaFieldConf['allowed'] : $tcaFieldConf['foreign_table'];
2798 $prep = $type == 'group' ?
$tcaFieldConf['prepend_tname'] : '';
2799 $newRelations = implode(',', $valueArray);
2800 /** @var $dbAnalysis RelationHandler */
2801 $dbAnalysis = $this->createRelationHandlerInstance();
2802 $dbAnalysis->registerNonTableValues
= !empty($tcaFieldConf['allowNonIdValues']);
2803 $dbAnalysis->start($newRelations, $tables, '', 0, $currentTable, $tcaFieldConf);
2804 if ($tcaFieldConf['MM']) {
2805 if ($status == 'update') {
2806 /** @var $oldRelations_dbAnalysis RelationHandler */
2807 $oldRelations_dbAnalysis = $this->createRelationHandlerInstance();
2808 $oldRelations_dbAnalysis->registerNonTableValues
= !empty($tcaFieldConf['allowNonIdValues']);
2809 // Db analysis with $id will initialize with the existing relations
2810 $oldRelations_dbAnalysis->start('', $tables, $tcaFieldConf['MM'], $id, $currentTable, $tcaFieldConf);
2811 $oldRelations = implode(',', $oldRelations_dbAnalysis->getValueArray());
2812 $dbAnalysis->writeMM($tcaFieldConf['MM'], $id, $prep);
2813 if ($oldRelations != $newRelations) {
2814 $this->mmHistoryRecords
[$currentTable . ':' . $id]['oldRecord'][$currentField] = $oldRelations;
2815 $this->mmHistoryRecords
[$currentTable . ':' . $id]['newRecord'][$currentField] = $newRelations;
2817 $this->mmHistoryRecords
[$currentTable . ':' . $id]['oldRecord'][$currentField] = '';
2818 $this->mmHistoryRecords
[$currentTable . ':' . $id]['newRecord'][$currentField] = '';
2821 $this->dbAnalysisStore
[] = array($dbAnalysis, $tcaFieldConf['MM'], $id, $prep, $currentTable);
2823 $valueArray = $dbAnalysis->countItems();
2825 $valueArray = $dbAnalysis->getValueArray($prep);
2827 // Here we should see if 1) the records exist anymore, 2) which are new and check if the BE_USER has read-access to the new ones.
2832 * Explodes the $value, which is a list of files/uids (group select)
2834 * @param string $value Input string, comma separated values. For each part it will also be detected if a '|' is found and the first part will then be used if that is the case. Further the value will be rawurldecoded.
2835 * @return array The value array.
2837 public function checkValue_group_select_explodeSelectGroupValue($value)
2839 $valueArray = GeneralUtility
::trimExplode(',', $value, true);
2840 foreach ($valueArray as &$newVal) {
2841 $temp = explode('|', $newVal, 2);
2842 $newVal = str_replace(',', '', str_replace('|', '', rawurldecode($temp[0])));
2849 * Starts the processing the input data for flexforms. This will traverse all sheets / languages and for each it will traverse the sub-structure.
2850 * See checkValue_flex_procInData_travDS() for more details.
2851 * WARNING: Currently, it traverses based on the actual _data_ array and NOT the _structure_. This means that values for non-valid fields, lKey/vKey/sKeys will be accepted! For traversal of data with a call back function you should rather use \TYPO3\CMS\Core\Configuration\FlexForm\FlexFormTools
2853 * @param array $dataPart The 'data' part of the INPUT flexform data
2854 * @param array $dataPart_current The 'data' part of the CURRENT flexform data
2855 * @param array $uploadedFiles The uploaded files for the 'data' part of the INPUT flexform data
2856 * @param array $dataStructArray Data structure for the form (might be sheets or not). Only values in the data array which has a configuration in the data structure will be processed.
2857 * @param array $pParams A set of parameters to pass through for the calling of the evaluation functions