remind/routing

REMIND - Routing

Installs: 79

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:typo3-cms-extension

v1.0.2 2025-03-13 08:16 UTC

This package is auto-updated.

Last update: 2025-03-18 14:01:34 UTC


README

This extension provides additional Route Enhancers and Aspects.

ExtbaseQuery Route Enhancer

ExtbaseQuery Route Enhancer replaces extbase plugin query parameters with custom names and omits action and controller parameters.

limitToPages

Optional, Route Enhancer only matches if correct CType exists on page.

defaults

Behave the same as described here.

namespace, extension, plugin, _controller

Behave the same as described here.

parameters

Parameters are divided into keys and values. In both, use the original parameter name as the key and the aspect name as the value. In keys it is possible to simply use a new parameter name as value instead of an aspect.

aspects

Aspects used for keys and values defined in parameters. Aspects for parameter keys must implement ModifiableAspectInterface while aspects for parameter values must implement MappableAspectInterface.

types

Limit the route enhancer to certain page types, for example to enhance solr search result routes but not autocomplete routes. Defaults to [0].

example for News Extension

  News:
    limitToPages: [20]
    type: ExtbaseQuery
    extension: News
    plugin: Pi1
    _controller: 'News::list'
    defaults:
      page: '1'
    parameters:
      values:
        currentPage: pageValueAspect
        overwriteDemand/categories: categoryValueAspect
      keys:
        currentPage: page
        overwriteDemand/categories: categoryKeyAspect
    aspects:
      pageValueAspect:
        type: StaticRangeMapper
        start: '1'
        end: '5'
      categoryValueAspect:
        type: PersistedAliasMapper
        tableName: sys_category
        routeFieldName: slug
      categoryKeyAspect:
        type: LocaleModifier
        default: category
        localeMap:
          -
            locale: 'de_DE.*'
            value: kategorie

With these settings, the query parameters will look like this:

English: ?page=...&category=...

German: ?page=...&kategorie=...