Max value in GIFBUILDER

Posted by & filed under TYPO3.

Sometimes its not possible to find the dimensions of the entire element in GUIFBUILDER, however these dimensions need to be used in offsets. The new function max() returns the maximum of the two values. For example: XY = [10.w]+[20.w], max([10.h], [20.h]) More Info: RFC Feature #10725: Integrate possibility to determine maximum of multiple values in… Read more »

t3lib_div::isOnCurrentHost()

Posted by & filed under TYPO3.

New function isOnCurrentHost gives a convenient way of checking that the passed URL matches the current host. One use would be to limit BE editors to referencing URLs only to the current host. Ex: if (t3lib_div::isOnCurrentHost($url)) {    // Do something } More info: RFC: #10724: Feature: Provide a check that compare a given URL with… Read more »

filePath

Posted by & filed under TYPO3.

The filelist can now be manipulated by TS. The new property will fill in the list from a declared folder: tt_content.uploads.20.filePath It allows you to set the filepath where images are taken from to be set via TypoScript, with a stdWrap option to dynamically set this value. By default this is set to get the… Read more »

List limits

Posted by & filed under TYPO3.

New User TS settings allow to modify limits, that were previously hardcoded: mod.web_list.itemsLimitSingleTable = 50 mod.web_list.itemsLimitPerTable = 10 More info: RFC: #10550: Listview: default limits are hardcoded http://bugs.typo3.org/view.php?id=10550

Disable available languages

Posted by & filed under TYPO3.

New setting mod.SHARED.disableLanguages (available from PageTS) takes a list of languages, and makes them unavailable for part of the page tree. More info: RFC #10432: Page TS option to disable avaiable languages http://bugs.typo3.org/view.php?id=10432