Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You can find the TCA for the TYPO3 backend in the files typo3/sysext/cms/tbl_tt_content.php and typo3/sysext/cms/tbl_cms.php. Here you find the header_link example.</p> <p><strong>Solution for TYPO3 6.1 and lower:</strong></p> <pre><code>'header_link' =&gt; array( 'label' =&gt; 'LLL:EXT:cms/locallang_ttc.xml:header_link', 'exclude' =&gt; 1, 'config' =&gt; array( 'type' =&gt; 'input', 'size' =&gt; '50', 'max' =&gt; '256', 'eval' =&gt; 'trim', 'wizards' =&gt; array( '_PADDING' =&gt; 2, 'link' =&gt; array( 'type' =&gt; 'popup', 'title' =&gt; 'LLL:EXT:cms/locallang_ttc.xml:header_link_formlabel', 'icon' =&gt; 'link_popup.gif', 'script' =&gt; 'browse_links.php?mode=wizard', 'JSopenParams' =&gt; 'height=300,width=500,status=0,menubar=0,scrollbars=1', ), ), 'softref' =&gt; 'typolink', ), ), </code></pre> <p><strong>Solution for TYPO3 6.2.x - 7.6.x:</strong></p> <pre><code>'header_link' =&gt; array( 'label' =&gt; 'LLL:EXT:cms/locallang_ttc.xml:header_link', 'exclude' =&gt; 1, 'config' =&gt; array( 'type' =&gt; 'input', 'size' =&gt; '50', 'max' =&gt; '256', 'eval' =&gt; 'trim', 'wizards' =&gt; array( '_PADDING' =&gt; 2, 'link' =&gt; array( 'type' =&gt; 'popup', 'title' =&gt; 'LLL:EXT:cms/locallang_ttc.xml:header_link_formlabel', 'icon' =&gt; 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_link.gif', 'module' =&gt; array( 'name' =&gt; 'wizard_element_browser', 'urlParameters' =&gt; array( 'mode' =&gt; 'wizard', 'act' =&gt; 'page' ) ), 'JSopenParams' =&gt; 'height=300,width=500,status=0,menubar=0,scrollbars=1', ), ), 'softref' =&gt; 'typolink', ), ), </code></pre> <p><strong>Solution for TYPO3 8.x:</strong></p> <pre><code>'header_link' =&gt; array( 'label' =&gt; 'LLL:EXT:cms/locallang_ttc.xml:header_link', 'exclude' =&gt; 1, 'config' =&gt; array( 'type' =&gt; 'input', 'renderType' =&gt; 'inputLink', ), </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload