SHARED

colPos_list

colPos_list
Type
list of integers
Default
1,0,2,3

This option lets you specify which columns of tt_content elements should be editable in the 'Columns' view of the Web > Page module.

Used on top of backend layouts, this setting controls which columns are editable. Columns configured in the Backend Layout which are not listed here, will be displayed with placeholder area.

Each column has a number which ultimately comes from the configuration of the table tt_content, field 'colPos'. These are the values of the four default columns used in the default backend layout:

Left: 1, Normal: 0, Right: 2, Border: 3

Example: Create a basic backend layout

The example creates a basic backend layout and sets the "Left" column to be not editable:

  • Create a record of type "Backend Layout", for instance in the root page of your website
  • Add a title, e.g. "My Layout"
  • Use the wizard to create a two column backend layout, the result may look like this:

    A simple backend layout

    A simple backend layout

  • Create a page and select this new backend layout in the "Appearance" tab. The page module then looks like this, displaying the two defined columns:

    Backend layout used in page module

    Backend layout used in page module

  • Now set the "Left" column to be not editable using page TSconfig in the Resources tab of the page, by restricting colPos_list to 0 (the "Content" columns as defined above):

    Page TSconfig in the "Resources" tab of the page
    mod.SHARED.colPos_list = 0
    Copied!
  • The result in the page module then looks like this:

    One column not editable in a backend layout

    One column not editable in a backend layout

defaultLanguageFlag

defaultLanguageFlag
Type
string

Country flag shown for the "Default" language in the backend, used in Web > List and Web > Page module. Values as listed in the "Select flag icon" of a language record in the backend are allowed, including the value "multiple".

The flag selector of a language record in the backend

The flag selector of a language record in the backend

Example: Show a German flag on a NullSite

This will show the German flag, and the text "deutsch" on hover.

EXT:site_package/Configuration/page.tsconfig
mod.SHARED {
    defaultLanguageFlag = de
    defaultLanguageLabel = deutsch
}
Copied!

defaultLanguageLabel

defaultLanguageLabel
Type
string

Alternate label for "Default" when language labels are shown in the interface.

Used in Web > List and Web > Page module.

disableLanguages

disableLanguages
Type
string

Comma-separated list of language UIDs which will be disabled in the given page tree.

disableSysNoteButton

disableSysNoteButton
Type
boolean

Disables the sys_note creation button in the modules' top button bar in the Page, List and Info modules.