---
title: "web_info"
manual: "TypoScript Explained"
version: "main"
permalink: "https://docs.typo3.org/permalink/t3tsref:page-tsconfig-mod-web-info@main"
source: "PageTsconfig/Mod/WebInfo.rst"
modified: "2026-09-15T19:22:01+00:00"
---

# web_info

Configuration options of the **Content > Status** module.

> [!NOTE]
> **Changed in version 14.0**
>
> The main module `Web` has been renamed to `Content`.
> See [Feature: #107628 - Improved backend module naming and structure](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/14.0/Feature-107628-ImprovedBackendModuleNamingAndStructure.html#feature-107628-1729026000)

-   [fieldDefinitions](https://docs.typo3.org/permalink/t3tsref:fielddefinitions@main)

## fieldDefinitions

-   **fieldDefinitions**

    -   *Type:* array

    The available fields in the "Pagetree overview" module in the
    **Content > Status** module, by default ship with the entries
    "Basic settings", "Record overview", and "Cache and age".

    ![Default entries of Pagetree Overview](../../Images/ManualScreenshots/Info/PageTsModWebInfoFieldDefinitions.png)

    By using page TsConfig it is possible to change the available fields and add additional entries to the select box.

    Next to using a list of fields from the `pages` table you can add counters for records in a given table by prefixing a
    table name with `table_` and adding it to the list of fields.

    The string `###ALL_TABLES###` is replaced with a list of all table names an editor has access to.

### Example: Override the field definitions in the status module

**EXT:site_package/Configuration/page.tsconfig**

```typoscript
mod.web_info.fieldDefinitions {
    0 {
        # Basic settings
        label = LLL:info.webinfo:pages_0
        fields = title,uid,slug,alias,starttime,endtime,fe_group,target,url,shortcut,shortcut_mode
    }
    1 {
        # Record overview
        label = LLL:info.webinfo:pages_1
        fields = title,uid,###ALL_TABLES###
    }
    2 {
        # Cache and age
        label = LLL:info.webinfo:pages_2
        fields = title,uid,table_tt_content,table_fe_users
    }
}
```
