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.5(2mo ago)08.2k↑167.9%GPL-2.0-or-laterShellPHP ^8.1 || ^8.2 || ^8.3 || ^8.4CI failing

Since May 10Pushed 2mo 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 2d ago

READMEChangelog (8)Dependencies (18)Versions (17)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

51

—

FairBetter than 95% of packages

Maintenance83

Actively maintained with recent releases

Popularity24

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity70

Established project with proven stability

 Bus Factor1

Top contributor holds 65.9% 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 ~88 days

Recently: every ~41 days

Total

13

Last Release

86d ago

Major Versions

1.1.0 → 2.0.02025-03-04

1.1.1 → 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://avatars.githubusercontent.com/u/1453466?v=4)[Stefan Bürk](/maintainers/sbuerk)[@sbuerk](https://github.com/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 (12 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

[friendsoftypo3/content-blocks

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

103519.9k53](/packages/friendsoftypo3-content-blocks)[pagemachine/typo3-formlog

Form log for TYPO3

23238.6k8](/packages/pagemachine-typo3-formlog)[eliashaeussler/typo3-form-consent

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

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

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

40529.5k](/packages/wazum-sluggi)[typo3/cms-adminpanel

TYPO3 CMS Admin Panel - The Admin Panel displays information about your site in the frontend and contains a range of metrics including debug and caching information.

115.7M66](/packages/typo3-cms-adminpanel)[web-vision/wv_deepltranslate

DeepL Translate (CORE) - This extension provides option to translate content element, and TCA record texts to DeepL supported languages.

33304.3k](/packages/web-vision-wv-deepltranslate)

PHPackages © 2026

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