Project

General

Profile

Bug #88977

Updated by Manuel Selbach over 4 years ago

Hey! So we had previously next configuration of a field(type=>group) 

         'config' => [ 
                     'type' => 'group', 
                     'internal_type' => 'db', 
                     'allowed' => 'pages', 
                     'minitems' => 0, 
                     'maxitems' => 1000, 
                     'size' => 5, 
                     'wizards' => [ 
                         'suggest' => ['type' => 'suggest'], 
                     ], 
          ], 

 So as only pages was allowed, then in DB we was saving just IDs separated by comma 

 Now we need to add several other models and support sys_file: 

          'config' => [ 
                     'type' => 'group', 
                     'internal_type' => 'db', 
                     'allowed' => 'pages,sys_file,tx_blabla_domain_model_meeting,tx_blabla_domain_model_recording', 
                     'minitems' => 0, 
                     'maxitems' => 1000, 
                     'size' => 8, 
                     'wizards' => [ 
                         'suggest' => ['type' => 'suggest'], 
                     ], 
                     'fieldControl' => [ 
                         'insertClipboard' => ['disabled' => false], 
                     ], 
                     'appearance' => [ 
                         'elementBrowserType' => 'file', 
                         'elementBrowserAllowed' => 'pdf,youtube,zip,doc,docx,mp4,jpg,jpeg,png,svg', 
                     ], 
          ], 

 we should have pages on the first place because otherwise we will have issues with data which is already in DB, as there was no tables references in identifiers but only IDs (separated by comma), TYPO3 will render that IDs with first table in 'allowed' field, when you open content element on TYPO3 backend. So if you had "1003,1006" in the field table, it will be now converted to "pages_1003,pages_1006". 

 But in that case.... we have another issue (which is, I think a TYPO3 bug..) I will explain it here: 
 Lets say you have next 'allowed': 

 'allowed' => 'pages,sys_file,tx_blabla_domain_model_meeting,tx_blabla_domain_model_recording', 

 so sys_file is on the second place. 

 Now lets open our Content Element and lets add a file, for it we need to click on ElementBrowser button: 

 !1.png! 1.png 

 Then ElementBrowser will be opened in separate tab/window but it will be still connected to the previous page. Then you should select a file and click on it. 

 your file will be added to the field type=>group but just its UID but not TABLE_UID, so when you save content element it will see that there is only UID available and will take first table from allowed field, so file with UID=999 will be now added as a -> pages_999 which is completely wrong. 

 My question is what I am doing wrong? or maybe you know some workaround (moving sys_file on the first place isn't a solution for me in this case), or you have a plan how to fix it? 

 As I see misunderstanding is somewhere here: 

 !3.png! 

 3.png 
 This is a place where we returning our Identifier (uid or table_uid) from Element Browser to the TCA field  

 So in altElValue is transferred just UID value, however in elValue we have table_uid 

 (My idea was that someone just by mistake misunderstood it and it should be just converted to -> "elValue ? elValue : altElValue"), or altElValue and elValue should have switched values in the place where they are set. 


 BTW... clicking on this button will open just a Browser for pages or models but not FilesBrowser... ? another bug? 

 !2.png! 2.png 

Back