DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

Datastructure TypoScript

Overview

TemplaVoila offers various special registers to access some context information such as information about the enclosing record, the current field or the section.

Register overview:

Register name

Register name

Description

Description

Register name

tx_templavoila_pi1.parentRec.<field>

Description

Access field data from the database record. See examples below.

Register name

tx_templavoila_pi1.current_field

Description

Contains the name of the datastructure field.

Register name

tx_templavoila_pi1.nested_fields

Description

Contains the list of all fields your TypoScript is rendered in and provides a way to retriev the context of your rendered element.

Register name

tx_templavoila_pi1.sectionPos

Description

Retrieve the current position of your element within a section. See example below.

Register name

tx_templavoila_pi1.sectionCount

Description

Retrieve the total amount of elements in the current section. See example below.

Register name

tx_templavoila_pi1.sectionIsFirstItem

Description

Determine whether the current element is the first element within the current section.

Register name

tx_templavoila_pi1.sectionIsLastItem

Description

Determine whether the current element is the last element within the current section.

Accessing “parent” record from DS TypoScript

To access “parent” record from “tt_content” or “pages” table in the <TypoScript> section of a field, developer can use special registers. These registers defined only when <TypoScript> section is executed. The following example shows how to use these registers:

<TypoScript>
10 = TEXT
10.data = register:tx_templavoila_pi1.parentRec.uid
10.wrap = “uid” field of parent record is |
</TypoScript>

Thus any field of parent record is defined as tx_templavoila_pi1.parentRec.XXX register, where XXX is replaced by a field name from the corresponding table.

Notice that these registers are undefined for static data structures because static data structures do not have associated parent record. If reference to tx_templavoila_pi1.parentRec.XXX appears in the static data structure, result is undefined.

Section information within DS TypoScript

When using TypoScript for items within sections TemplaVoila 1.4 introduced 4 new registers to determine the position of the current item within the entire section. They are defined as tx_templavoila_pi1.sectionPos , tx_templavoila_pi1.sectionCount , tx_templavoila_pi1.sectionIsFirstItem and tx_templavoila_pi1.sectionIsLastItem .

Example:

<TypoScript>
10 = TEXT
10.current = 1
10.dataWrap = {register:tx_templavoila_pi1.sectionPos} / {register:tx_templavoila_pi1.sectionCount}
10.if.isTrue.data = register:tx_templavoila_pi1.sectionIsFirstItem
</TypoScript>