TYPO3 Logo
JAR Utilities
Options
View source How to edit Full documentation (single file)

JAR Utilities

  • Introduction
  • Installation
  • Data Processors
    • GetRow Processor
    • Link Processor
    • Localization Processor
    • Reflection Processor
  • Services
    • Reflection Service
    • Registry Service
  • Utilities
    • Backend Utility
    • Content Utility
    • Data Utility
    • Extension Utility
    • File Utility
    • Format Utility
    • Frontend Utility
    • Iterator Utility
    • Localization Utility
    • Number Utility
    • Page Utility
    • String Utility
    • TCA Utility
    • TypoScript Utility
    • Wildcard Utility
  • Sitemap
  • Index
  1. JAR Utilities
  2. Data Processors
  3. Link Processor

Link Processor

Creates a link on a (mainly) dataprocessed element

Parameter Description
page PID of the target page
title Linktitle
class Link CSS Class
target Linktarget
params Additional params which will prepend as GET-Parameters
as If set, the link would be stored in this key, otherwise the key "link" is used
flat if true - direct return the URL otherwise return link object (default false)

Output

Same as Link (TCA type input with renderType inputLink)

Example Case

Building detail-links for a joblist

tt_content.tx_myextension_joblistctype {
   dataProcessing {
      10 = TYPO3\CMS\Frontend\DataProcessing\DatabaseQueryProcessor
      10 {
         table = tx_myextension_jobs
         pidInList = 266
         as = jobs
         dataProcessing {
            10 = Jar\Utilities\DataProcessing\LinkProcessor
            10 {
               page = 187
               title = TEXT
               title.data = field:title
               as = detail_link
               params {
                  jobid = TEXT
                  jobid.data = field:uid
               }
            }
         }
      }
   }
}
Copied!
  • Previous
  • Next
Reference to the headline

Copy and freely share the link

This link target has no permanent anchor assigned.The link below can be used, but is prone to change if the page gets moved.

Copy this link into your TYPO3 manual.

Last rendered: Jun 16, 2025 14:36

  • Legal Notice
  • Privacy Policy