---
title: "Frontend link builder"
manual: "TYPO3 Explained"
version: "13.4"
permalink: "https://docs.typo3.org/permalink/t3coreapi:link-builder@13.4"
source: "ApiOverview/LinkHandling/LinkBuilder.rst"
rendered: "2026-09-26T10:27:18+00:00"
---

# Frontend link builder {#link-builder}

A link builder, a class extending the abstract class
`\TYPO3\CMS\Frontend\Typolink\AbstractTypolinkBuilder`, is called whenever
a link is rendered in the frontend.

There are specific link builders for each type of link. Which link to
call is determined by the class configured in global configuration,
see [typolinkBuilder](https://docs.typo3.org/permalink/t3coreapi:typo3confvars-fe-typolinkbuilder@13.4).

You can register a custom link builder in your extension's
[ext_localconf.php](https://docs.typo3.org/permalink/t3coreapi:ext-localconf-php@13.4):

**EXT:my_extension/ext_localconf.php**

```php
<?php

declare(strict_types=1);

use MyVendor\MyExtension\LinkHandler\MyLinkBuilder;

defined('TYPO3') or die();

$GLOBALS['TYPO3_CONF_VARS']['FE']['typolinkBuilder']['mylinkkey'] =
    MyLinkBuilder::class;

```

The link builders provided by the Core can be found in namespace
`\TYPO3\CMS\Frontend\Typolink`. It is possible to also create a
[custom link builder](https://docs.typo3.org/permalink/t3coreapi:tutorial-typolink-builder@13.4).

Link builders are called by the [frontend link factory](https://docs.typo3.org/permalink/t3coreapi:link-factory@13.4), which
is the main entry point for generating links from PHP.

The main method of a link builder is the function
`AbstractTypolinkBuilder::build()`. It is called with
with the parameter array provided by the
[Core link handler](https://docs.typo3.org/permalink/t3coreapi:core-link-handler@13.4).

If the link can be rendered,
it returns a new `\TYPO3\CMS\Frontend\Typolink\LinkResult` object. The
actual rendering of the link depends on the context the link is rendered in
(for example HTML or JSON).

If the link cannot be built it should throw a
`\TYPO3\CMS\Frontend\Typolink\UnableToLinkException`.
