smic/page-router-event 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

smic/page-router-event

最新稳定版本:1.0.0

Composer 安装命令:

composer require smic/page-router-event

包简介

Sends the missing PageUriGenerated PSR-14 event from the PageRouter

README 文档

README

Provides a PSR-14 event to respond to generated page URIs

The core TYPO3 PageRouter doesn't offer the possibility to modify generated URLs. This extension replaces the PageRouter->generateUri method and dispatches a PSR-14 event to react to or modify generated URLs.

TYPO3 core issue

An issue for the TYPO3 core has been created on forge: #92780. This extension is meant as an intermediate solution and becomes obsolete as soon as the core PageRouter offers such an event.

Usage

Install:

composer req smic/page-router-event dev-master

Register an event listener in the Services.yaml:

services:

  Vendor\MyExt\EventListener\ReactToGeneratedUri:
    tags:
      - name: event.listener
        identifier: 'MyExtReactToGeneratedUri'
        event: Smic\PageRouterEvent\Event\PageUriGenerated

Your event listener receives a Smic\PageRouterEvent\Event\PageUriGenerated event that offers:

  • getters for input data that were used to generate the URL ->getFragment(), ->getParameters(), ->getRoute(), ->getSite(), ->getType()
  • a getter for the generated URI ->getUri()
  • the PageRouter itself ->getPageRouter()
  • and a setter to replace the generated URI ->setUri($uri)

If you're not familiar with PSR-14 event handling in TYPO3 have a look at: https://docs.typo3.org/m/typo3/reference-coreapi/master/en-us/ApiOverview/Hooks/EventDispatcher/Index.html

统计信息

  • 总下载量: 49.28k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2020-11-05