TypoScript Setup 

Please note that the following properties refer to TS template setup, not to TS template constants! When installing this extension, you should NOT use the following setting: config.disableAllHeaderCode = 1

This setting will prevent the inclusion of Javascript essential to the correct behavior of the profile editing features.

Properties 

extraLabels 

extraLabels

extraLabels
Type
string

Comma-separated list of additional labels to use in the HTML template.

See section Labels and localisation about adding extra labels.

templateFile 

templateFile

templateFile
Type
string

Same as file.templateFile from Constants. This is needed under Setup for language specific template files only.

where.static_countries 

extraLabels

extraLabels
Type
string

Set a SQL WHERE condition to follow for the selected country in the static_countries table of the static_info_tables extension. Maybe you want to see only users from EU countries on your site.

See section Labels and localisation about adding extra labels.

Example 1:

plugin.tx_agency {
where.static_countries = cn_eu_member = 1

}

Example 2:

evalFunc 

evalFunc

evalFunc
Type
function-name

additional evaluation function for the records, e.g. user_myfunctionor user_myclass->main

userFunc_updateArray 

evalFunc

evalFunc
Type
function-name

User function to update the records

displayRequired 

displayRequired

displayRequired
Type
cObject

Use this cOject for the display of required fields. By default the required fields are printed with an asterisk (*).

Example:

displayRequired = COA
displayRequired = COA
displayRequired {
   10 = TEXT
   10.value = You must fill this in!
   10.wrap = <b>Attention:</b> | *
}
Copied!