PHPackages                             sourcebroker/singleview - 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. sourcebroker/singleview

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

sourcebroker/singleview
=======================

Allows to display single view on different page than list view and still keep urls user and SEO friendly

4.0.0(1y ago)411.9k↓34.4%3[1 issues](https://github.com/sourcebroker/singleview/issues)GPL-2.0-or-laterPHP

Since Feb 10Pushed 1y ago2 watchersCompare

[ Source](https://github.com/sourcebroker/singleview)[ Packagist](https://packagist.org/packages/sourcebroker/singleview)[ RSS](/packages/sourcebroker-singleview/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (13)Used By (0)

TYPO3 Extension `singleview`
============================

[](#typo3-extension-singleview)

> [![https://poser.pugx.org/sourcebroker/singleview/v/stable](https://camo.githubusercontent.com/741f4ef7f6ccf3d48928eacb839f5de7d931152477ec8530c75c0e524a1f6d99/68747470733a2f2f706f7365722e707567782e6f72672f736f7572636562726f6b65722f73696e676c65766965772f762f737461626c65)](https://packagist.org/packages/sourcebroker/singleview)[![https://poser.pugx.org/sourcebroker/singleview/license](https://camo.githubusercontent.com/bc6bd6890173d2ab5cc648c0be987bc9bcb6f0e3acf048db6493ad910a2fedce/68747470733a2f2f706f7365722e707567782e6f72672f736f7572636562726f6b65722f73696e676c65766965772f6c6963656e7365)](https://packagist.org/packages/sourcebroker/singleview)

- [What does it do?](#what-does-it-do)
- [Installation](#installation)
- [Usage](#usage)
- [Technical background](#technical-background)
- [Changelog](#changelog)

[What does it do?](#id1)
------------------------

[](#what-does-it-do)

This extension allows to **display single view on different page than list view** and still keep urls user and SEO friendly.

Look at example below for better understanding.

Lets take following list view url:

```
https://www.example.com/list/
```

TYPO3 default is that when you put single view on different page then there is no easy way to remove it from slugified url. You will get something like below (single view is on separate page named "detail"):

```
https://www.example.com/list/detail/title-of-single-item/
```

If you will use `ext:singleview` then you can put single view on different page than list view but the slugified url will still look nice like below - so no `/detail/` part.

```
https://www.example.com/list/title-of-single-item/
```

[Installation](#id2)
--------------------

[](#installation)

Use composer:

```
composer require sourcebroker/singleview
```

[Usage](#id3)
-------------

[](#usage)

Each configuration of the ext:singleview settings has to be registered in your ext\_localconf.php file using `\SourceBroker\Singleview\Service\SingleViewService::registerConfig()` static method as in example below (for ext:news)

```
