Project

General

Profile

Feature #103403

Updated by Sybille Peters about 2 months ago

*Currently, there is a known problem that RECORD link checking is not possible via the typolink_tag softref parser, see #102468. Because of this, when fixing this issue, one must currently test the record link checking using urls which are not wrapped in an a tag. This can be done for example, by using tt_content.header_link.* 

 e.g. "t3://record?identifier=tx_news&uid=99999" 

 as described in https://docs.typo3.org/p/georgringer/news/main/en-us/Tutorials/BestPractice/Linkhandler/Index.html#linkhandler  


 Currently, InternalLinktype::checkLink is called for these types of links, but then it always evaluates to "true" if the target table is not "tt_content" or "pages": 

 <pre><code class="php"> 
 if (!in_array($table, ['pages', 'tt_content'], true)) { 
    return true; 
 } 

 </code></pre> 

 https://github.com/TYPO3/typo3/blob/5c95229af666e4ce39dd5a22baecd3390d649c49/typo3/sysext/linkvalidator/Classes/Linktype/InternalLinktype.php#L85 


 Ideally, the InternalLinktype could handle custom records for other tables as well, e.g. tx_news_domain_model_news. 

Back