TYPO3 CMS  TYPO3_7-6
TcaInputPlaceholders.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
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.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
24 
31 {
40  public function addData(array $result)
41  {
42  foreach ($result['processedTca']['columns'] as $fieldName => $fieldConfig) {
43  // Placeholders are only valid for input and text type fields
44  if (
45  ($fieldConfig['config']['type'] !== 'input' && $fieldConfig['config']['type'] !== 'text')
46  || !isset($fieldConfig['config']['placeholder'])
47  ) {
48  continue;
49  }
50 
51  // Resolve __row|field type placeholders
52  if (StringUtility::beginsWith($fieldConfig['config']['placeholder'], '__row|')) {
53  // split field names into array and remove the __row indicator
54  $fieldNameArray = array_slice(
55  GeneralUtility::trimExplode('|', $fieldConfig['config']['placeholder'], true),
56  1
57  );
58  $result['processedTca']['columns'][$fieldName]['config']['placeholder'] = $this->getPlaceholderValue($fieldNameArray, $result);
59  }
60 
61  // Resolve placeholders from language files
62  if (StringUtility::beginsWith($fieldConfig['config']['placeholder'], 'LLL:')) {
63  $result['processedTca']['columns'][$fieldName]['config']['placeholder'] = $this->getLanguageService()->sl($fieldConfig['config']['placeholder']);
64  }
65 
66  // Remove empty placeholders
67  if (empty($result['processedTca']['columns'][$fieldName]['config']['placeholder'])) {
68  unset($result['processedTca']['columns'][$fieldName]['config']['placeholder']);
69  }
70  }
71 
72  return $result;
73  }
74 
85  protected function getPlaceholderValue($fieldNameArray, $result, $recursionLevel = 0)
86  {
87  if ($recursionLevel > 99) {
88  // This should not happen, treat as misconfiguration
89  return '';
90  }
91 
92  $fieldName = array_shift($fieldNameArray);
93  $fieldConfig = $result['processedTca']['columns'][$fieldName]['config'];
94 
95  // Skip if a defined field was actually not present in the database row
96  // Using array_key_exists here, since NULL values are valid as well.
97  if (!array_key_exists($fieldName, $result['databaseRow'])) {
98  return '';
99  }
100 
101  $value = $result['databaseRow'][$fieldName];
102 
103  switch ($fieldConfig['type']) {
104  case 'select':
105  // The FormDataProviders already resolved the select items to an array of uids,
106  // filter out empty values that occur when no related record has been selected.
107  $possibleUids = array_filter($value);
108  $foreignTableName = $fieldConfig['foreign_table'];
109  break;
110  case 'group':
111  $possibleUids = $this->getRelatedGroupFieldUids($fieldConfig, $value);
112  $foreignTableName = $this->getAllowedTableForGroupField($fieldConfig);
113  break;
114  case 'inline':
115  $possibleUids = array_filter(GeneralUtility::trimExplode(',', $value, true));
116  $foreignTableName = $fieldConfig['foreign_table'];
117  break;
118  default:
119  $possibleUids = [];
120  $foreignTableName = '';
121  }
122 
123  if (!empty($possibleUids) && !empty($fieldNameArray)) {
124  $relatedFormData = $this->getRelatedFormData($foreignTableName, $possibleUids[0], $fieldNameArray[0]);
125  $value = $this->getPlaceholderValue($fieldNameArray, $relatedFormData, $recursionLevel + 1);
126  }
127 
128  if ($recursionLevel === 0 && is_array($value)) {
129  $value = implode(', ', $value);
130  }
131  return (string)$value;
132  }
133 
142  protected function getRelatedFormData($tableName, $uid, $columnToProcess)
143  {
144  $fakeDataInput = [
145  'command' => 'edit',
146  'vanillaUid' => (int)$uid,
147  'tableName' => $tableName,
148  'inlineCompileExistingChildren' => false,
149  'columnsToProcess' => [$columnToProcess],
150  ];
152  $formDataGroup = GeneralUtility::makeInstance(TcaInputPlaceholderRecord::class);
154  $formDataCompiler = GeneralUtility::makeInstance(FormDataCompiler::class, $formDataGroup);
155  $compilerResult = $formDataCompiler->compile($fakeDataInput);
156  return $compilerResult;
157  }
158 
169  protected function getRelatedGroupFieldUids(array $fieldConfig, $value)
170  {
171  $relatedUids = [];
172  $allowedTable = $this->getAllowedTableForGroupField($fieldConfig);
173 
174  // Skip if it's not a database relation with a resolvable foreign table
175  if (($fieldConfig['internal_type'] !== 'db') || ($allowedTable === false)) {
176  return $relatedUids;
177  }
178 
179  $values = GeneralUtility::trimExplode(',', $value, true);
180  foreach ($values as $groupValue) {
181  list($foreignIdentifier, $_) = GeneralUtility::trimExplode('|', $groupValue);
182  list($recordForeignTable, $foreignUid) = BackendUtility::splitTable_Uid($foreignIdentifier);
183  // skip records that do not match the allowed table
184  if (!empty($recordForeignTable) && ($recordForeignTable !== $allowedTable)) {
185  continue;
186  }
187  $relatedUids[] = $foreignUid;
188  }
189 
190  return $relatedUids;
191  }
192 
201  protected function getAllowedTableForGroupField(array $fieldConfig)
202  {
203  $allowedTable = false;
204 
205  $allowedTables = GeneralUtility::trimExplode(',', $fieldConfig['allowed'], true);
206  if (count($allowedTables) === 1) {
207  $allowedTable = $allowedTables[0];
208  }
209 
210  return $allowedTable;
211  }
212 
216  protected function getLanguageService()
217  {
218  return $GLOBALS['LANG'];
219  }
220 }
static trimExplode($delim, $string, $removeEmptyValues=false, $limit=0)
$uid
Definition: server.php:38
static beginsWith($haystack, $needle)
getPlaceholderValue($fieldNameArray, $result, $recursionLevel=0)
if(TYPO3_MODE==='BE') $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tsfebeuserauth.php']['frontendEditingController']['default']