PHPackages                             fgtclb/page-backend-layout - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. fgtclb/page-backend-layout

ActiveTypo3-cms-extension[Utility &amp; Helpers](/categories/utility)

fgtclb/page-backend-layout
==========================

Helper for Backend layout overrides based on page doktype

2.0.2(6mo ago)07.3k—0%GPL-2.0-or-laterShellPHP ^8.1 || ^8.2 || ^8.3 || ^8.4

Since May 10Pushed 6mo ago3 watchersCompare

[ Source](https://github.com/fgtclb/typo3-page-backend-layout)[ Packagist](https://packagist.org/packages/fgtclb/page-backend-layout)[ RSS](/packages/fgtclb-page-backend-layout/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (7)Dependencies (9)Versions (14)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/e8105f9cbdae0887fdec009118491a301198ca08c65f95f92b86e3eb5fdbc486/68747470733a2f2f706f7365722e707567782e6f72672f666774636c622f706167652d6261636b656e642d6c61796f75742f762f737461626c652e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/fgtclb/page-backend-layout)[![TYPO3 12.4](https://camo.githubusercontent.com/af4386ccce6ff254edfbfc23a3850a527f374d729b0296e9de521a50783c9fa6/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d31322e342d677265656e2e7376673f7374796c653d666f722d7468652d6261646765)](https://get.typo3.org/version/12)[![TYPO3 13.4](https://camo.githubusercontent.com/d42fe27cc5732df3ef0ecf4bd12a80d214e0bc127a91f7885ba89fd155e74d31/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d31332e342d677265656e2e7376673f7374796c653d666f722d7468652d6261646765)](https://get.typo3.org/version/13)[![License](https://camo.githubusercontent.com/4e976aecd28f750f45f57da94af5bbf42e24b0f13c86716b432a3cfc278e1bf4/68747470733a2f2f706f7365722e707567782e6f72672f666774636c622f706167652d6261636b656e642d6c61796f75742f6c6963656e73653f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/fgtclb/page-backend-layout)[![Total Downloads](https://camo.githubusercontent.com/96295d5be25fd60d2f1e6be98a017b9332c5f140e83a0f33b1497d921f0ec131/68747470733a2f2f706f7365722e707567782e6f72672f666774636c622f706167652d6261636b656e642d6c61796f75742f646f776e6c6f6164732e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/fgtclb/page-backend-layout)[![Monthly Downloads](https://camo.githubusercontent.com/5381c8e2a230375c1776aa19fc64053d4bcdfb0e390b2892455f0ecba52cd606/68747470733a2f2f706f7365722e707567782e6f72672f666774636c622f706167652d6261636b656e642d6c61796f75742f642f6d6f6e74686c793f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/fgtclb/page-backend-layout)

TYPO3 extension `page_backend_layout`
=====================================

[](#typo3-extension-page_backend_layout)

This extension provides a simple possibility of adding basic information to the backend page view of TYPO3.

It is useful for giving information about page related information on top of the view without editing the whole record. A ViewHelper is added for rendering images into the view.

Installation
------------

[](#installation)

Install with your flavour:

- composer
- [TER](https://extensions.typo3.org/extension/page_backend_layout/)
- Extension Manager

We prefer composer installation:

```
composer req fgtclb/page-backend-layout
```

URL**Repository:****Read online:****TER:**[https://extensions.typo3.org/extension/page\_backend\_layout/](https://extensions.typo3.org/extension/page_backend_layout/)Version support
---------------

[](#version-support)

Page Backend Layout VersionTYPO3 VersionPHP Version1.x11 + 12&gt;=7.42.x12 + 138.1, 8.2, 8.3, 8.4Create a release (maintainers only)
-----------------------------------

[](#create-a-release-maintainers-only)

Prerequisites:

- git binary
- ssh key allowed to push new branches to the repository
- GitHub command line tool `gh` installed and configured with user having permission to create pull requests.

**Prepare release locally**

> Set `RELEASE_BRANCH` to branch release should happen, for example: 'main'. Set `RELEASE_VERSION` to release version working on, for example: '0.1.4'.

```
echo '>> Prepare release pull-request' ; \
  RELEASE_BRANCH='main' ; \
  RELEASE_VERSION='2.0.0' ; \
  git checkout main && \
  git fetch --all && \
  git pull --rebase && \
  git checkout ${RELEASE_BRANCH} && \
  git pull --rebase && \
  git checkout -b prepare-release-${RELEASE_VERSION} && \
  composer require --dev "typo3/tailor" && \
  ./.Build/bin/tailor set-version ${RELEASE_VERSION} && \
  composer remove --dev "typo3/tailor" && \
  git add . && \
  git commit -m "[TASK] Prepare release ${RELEASE_VERSION}" && \
  git push --set-upstream origin prepare-release-${RELEASE_VERSION} && \
  gh pr create --fill-verbose --base ${RELEASE_BRANCH} --title "[TASK] Prepare release for ${RELEASE_VERSION} on ${RELEASE_BRANCH}" && \
  git checkout main && \
  git branch -D prepare-release-${RELEASE_VERSION}
```

Check pull-request and the pipeline run.

**Merge approved pull-request and push version tag**

> Set `RELEASE_PR_NUMBER` with the pull-request number of the preparation pull-request. Set `RELEASE_BRANCH` to branch release should happen, for example: 'main' (same as in previous step). Set `RELEASE_VERSION` to release version working on, for example: `0.1.4` (same as in previous step).

```
RELEASE_BRANCH='main' ; \
RELEASE_VERSION='2.0.0' ; \
RELEASE_PR_NUMBER='123' ; \
  git checkout main && \
  git fetch --all && \
  git pull --rebase && \
  gh pr checkout ${RELEASE_PR_NUMBER} && \
  gh pr merge -rd ${RELEASE_PR_NUMBER} && \
  git tag ${RELEASE_VERSION} && \
  git push --tags
```

This triggers the `on push tags` workflow (`publish.yml`) which creates the upload package, creates the GitHub release and also uploads the release to the TYPO3 Extension Repository.

###  Health Score

46

—

FairBetter than 93% of packages

Maintenance66

Regular maintenance activity

Popularity23

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 78.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~100 days

Recently: every ~59 days

Total

10

Last Release

203d ago

Major Versions

1.1.0 → 2.0.02025-03-04

1.x-dev → 2.0.22025-10-28

PHP version history (2 changes)1.0.3PHP ^7.4 || ^8.0 || ^8.1 || ^8.2

2.0.0PHP ^8.1 || ^8.2 || ^8.3 || ^8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/22ea8c0796de498c0d81554f12539e71bdb9b9359df3a82a7fb450867a68a680?d=identicon)[sbuerk](/maintainers/sbuerk)

![](https://www.gravatar.com/avatar/1a1ddeb615ab1289506094f767ffacee7e1deaa6c914527b116cf88fcbe62e68?d=identicon)[calien666](/maintainers/calien666)

![](https://www.gravatar.com/avatar/62ab3ea3ea95a54b308b14093d3b1e5a989fc3ff95e7cf78abd3cdfb917c1c7b?d=identicon)[dot3media](/maintainers/dot3media)

---

Top Contributors

[![calien666](https://avatars.githubusercontent.com/u/11405116?v=4)](https://github.com/calien666 "calien666 (29 commits)")[![sbuerk](https://avatars.githubusercontent.com/u/1453466?v=4)](https://github.com/sbuerk "sbuerk (5 commits)")[![NarkNiro](https://avatars.githubusercontent.com/u/6518044?v=4)](https://github.com/NarkNiro "NarkNiro (3 commits)")

---

Tags

typo3typo3-cms-extensiontypo3-extension

###  Code Quality

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/fgtclb-page-backend-layout/health.svg)

```
[![Health](https://phpackages.com/badges/fgtclb-page-backend-layout/health.svg)](https://phpackages.com/packages/fgtclb-page-backend-layout)
```

###  Alternatives

[fluidtypo3/flux

The flux package from FluidTYPO3

152982.2k20](/packages/fluidtypo3-flux)[friendsoftypo3/content-blocks

TYPO3 CMS Content Blocks - Content Types API | Define reusable components via YAML

96374.6k23](/packages/friendsoftypo3-content-blocks)[eliashaeussler/typo3-form-consent

Extension for TYPO3 CMS that adds double opt-in functionality to EXT:form

1481.0k](/packages/eliashaeussler-typo3-form-consent)[wazum/sluggi

TYPO3 extension for URL slug management with inline editing, auto-sync, locking, access control, and redirects

39488.5k](/packages/wazum-sluggi)[praetorius/vite-asset-collector

Use AssetCollector to embed frontend assets generated by vite

52255.0k1](/packages/praetorius-vite-asset-collector)[brotkrueml/schema

Embedding schema.org vocabulary - API and view helpers for schema.org markup

33584.6k13](/packages/brotkrueml-schema)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
