Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I do not know, which parameters you need, so in short:</p> <pre><code>10.typolink { # you need a page to link too parameter = PAGE_ID_OF_SINGLE_VIEW # create an cacheable link, that does not depend on cooluri or realurl. useCacheHash = 1 # add the additional params additionalParams.wrap = &amp;tx_ttnews[uid]=| # data expects special commands # "&amp;my_extra_param=something" cannot work on .data additionalParams.data = field:uid } </code></pre> <p>If you need more then one additionalParams i would do it this way:</p> <pre><code>10.typolink { parameter = PAGE_ID_OF_SINGLE_VIEW useCacheHash = 1 # Create an Content Object Array # so you can separat the different entries # the cObject will return &amp;tx_ttnews[uid]=123&amp;what[ever]=hardcodedvalue # additionalParams is filled with that string and added to the url additionalParams.cObject = COA additionalParams.cObject { 10 = TEXT 10.wrap = &amp;tx_ttnews[uid]=| 10.field = uid 20 = TEXT 20.wrap = &amp;what[ever]=| 20.value = hardcodedvalue } } </code></pre> <p>You do not need </p> <pre><code>10.select.andWhere = deleted=0 AND hidden=0 </code></pre> <p>this is added automatically by the CONTENT Object.</p> <p>Read more about <a href="http://docs.typo3.org/typo3cms/TyposcriptReference/Functions/Typolink/Index.html" rel="nofollow">typolink</a> about <a href="http://docs.typo3.org/typo3cms/TyposcriptReference/ContentObjects/CoaAndCoaInt/Index.html" rel="nofollow">COA</a> and about <a href="http://docs.typo3.org/typo3cms/TyposcriptReference/Functions/Stdwrap/Index.html#stdwrap-data" rel="nofollow">stdWrap and its property data</a> and finally have a look at <a href="http://docs.typo3.org/typo3cms/TyposcriptReference/DataTypes/Reference/Index.html#data-type-gettext" rel="nofollow">getText</a>.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

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