PHPackages                             supseven/inline-page-module - 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. supseven/inline-page-module

ActiveTypo3-cms-extension

supseven/inline-page-module
===========================

Edit inline tt\_content records in a page module view

v4.0.0(2mo ago)44.6k↓43.5%1GPL-3.0-onlyPHPCI passing

Since Apr 18Pushed 2mo ago3 watchersCompare

[ Source](https://github.com/supseven-at/inline-page-module)[ Packagist](https://packagist.org/packages/supseven/inline-page-module)[ RSS](/packages/supseven-inline-page-module/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (3)Versions (15)Used By (0)

Inline Page Module for TYPO3
============================

[](#inline-page-module-for-typo3)

This is a TYPO3 extension that provides a page-module view for inline tt\_content records of non-page records, like news.

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

[](#installation)

Use composer to add the package as a dependency

```
composer require supseven/inline-page-module
```

Configuration
-------------

[](#configuration)

### Default

[](#default)

> **Important**: EXT:inline\_page\_module does not come with defaults, like for news. All fields that should have a page view must be defined by an integrator.

To add the function to a table, use the method `\Supseven\InlinePageModule\PageModuleSwitcher::register` in a `TCA/Overrides/table.php` file to generate the needed TCA settings. The function needs the name of the table as first parameter.

```
// Add to news table
\Supseven\InlinePageModule\PageModuleSwitcher::register('tx_news_domain_model_news');
```

### With a backend layout

[](#with-a-backend-layout)

The second parameter can a be the name of a backend layout. The page module will then use this backend layout. This is useful if the backend layout should have a different column name or if the `colPos` value of the tt\_content records differs from the inherited layout.

eg. with a PageTS like this

```
mod.web_layout.BackendLayouts.News {
    title = News Elements
    config.backend_layout {
        colCount = 1
        rowCount = 1
        rows.1.columns.1 {
            name = News Content
            colPos = 0
        }
    }
}

```

This backend layout can be used with

```
// Add to news table with backend layout "News"
\Supseven\InlinePageModule\PageModuleSwitcher::register(
    'tx_news_domain_model_news',
    'News'
);
```

All configurations for backend layouts remain unchanged, which includes [`EXT:content_defender`](https://github.com/IchHabRecht/content_defender)restrictions.

> **Important**: Having referenced records from multiple fields in several "colPos" in the same page layout view is currently not supported. Each field has its own view.

### Restricting fields

[](#restricting-fields)

If a table has several fields with inline relations to tt\_content records, the page module switch is added to all of them. To restrict this to only one or several fields, add the names of those fields to the parameter `$fields`of the method:

```
// Add to news table, but only to own field
\Supseven\InlinePageModule\PageModuleSwitcher::register(
    'tx_news_domain_model_news',
    fields: ['tx_my_tt_content_field']
);
```

### Extension Configuration

[](#extension-configuration)

This extension provides a configuration `List all available content elements in page module`, which is disabled by default. A huge amount of content elements (e.g. provided from news records) can lead to a timeout, if the folder containing these inline content elements is accessed in the page module. This setting prevents from loading all content elements.

Usage
-----

[](#usage)

After following the example above, news records will have a "Edit in page view" button (red arrow):

[![News content elements in form](./Documentation/Images/news-inline-records.jpg)](./Documentation/Images/news-inline-records.jpg)

Clicking this button will open the page module with the referenced tt\_content records:

[![News content in page module](./Documentation/Images/news-page-module.jpg)](./Documentation/Images/news-page-module.jpg)

In this view, all the common editing options, like drag-and-drop sorting or the "new" and "delete" buttons work like in the page module.

The "Go back..." button is a link to the form of the parent record.

In this view, the page-module navigation point on the left of the TYPO3 backend is not activated. Also, the page on which the parent record is, is (still) the selected.

Legal
-----

[](#legal)

### License

[](#license)

This package is provided under the GPL v3 license. See the file [LICENSE](./LICENSE) or  for details.

### Notices

[](#notices)

TYPO3 is provided under the GPL license, v2 or later. See  for details.

The "News" packaged mentioned in this document refers to [extension news](https://github.com/georgringer/news/) provided under the GPL v2 or later

The extension icon is part of the the [ionicons icon pack](https://ionic.io/ionicons) which is provided under the MIT license.

###  Health Score

46

—

FairBetter than 93% of packages

Maintenance84

Actively maintained with recent releases

Popularity27

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 89.7% 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 ~80 days

Recently: every ~184 days

Total

14

Last Release

82d ago

Major Versions

v0.1.0 → v1.0.02023-08-18

v1.0.2 → v2.0.02023-09-22

v2.0.6 → v3.0.02025-10-10

v3.0.1 → v4.0.02026-02-25

### Community

Maintainers

![](https://www.gravatar.com/avatar/734db5f15c75f25af8cfae564d15f7bc93ddc9460ed400afffc19ad21411c48b?d=identicon)[supseven](/maintainers/supseven)

---

Top Contributors

[![garfieldius](https://avatars.githubusercontent.com/u/705480?v=4)](https://github.com/garfieldius "garfieldius (26 commits)")[![helmutstrasser](https://avatars.githubusercontent.com/u/888354?v=4)](https://github.com/helmutstrasser "helmutstrasser (3 commits)")

###  Code Quality

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/supseven-inline-page-module/health.svg)

```
[![Health](https://phpackages.com/badges/supseven-inline-page-module/health.svg)](https://phpackages.com/packages/supseven-inline-page-module)
```

###  Alternatives

[fluidtypo3/vhs

This is a collection of ViewHelpers for performing rendering tasks that are not natively provided by TYPO3's Fluid templating engine.

1954.1M49](/packages/fluidtypo3-vhs)[typo3/testing-framework

The TYPO3 testing framework provides base classes for unit, functional and acceptance testing.

675.0M775](/packages/typo3-testing-framework)[netresearch/rte-ckeditor-image

Image support in CKEditor for the TYPO3 ecosystem - by Netresearch

63991.3k4](/packages/netresearch-rte-ckeditor-image)[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)

PHPackages © 2026

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