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.

Installation

Just install the extension and start using it. As of version 2.0.0, TYPO3 CMS 6.2 or newer is required.

Updating to version 2.0

With version 2.0, all PHP classes were changed to use namespaces. There is no backward compatibility layer. So if you used code like:

$foo = tx_expressions_parser::evaluateExpression('gp:bar');

you must now use:

$foo = \Cobweb\Expressions\ExpressionParser::evaluateExpression('gp:bar');