Start page
Start page

Start page / Template development / Template syntax / Functions / in the header / define

defineAvailable from FirstSpirit Version 4.0

Syntax of the define function

The basic structure of the define is as follows:

Definition of a string constant:

<CMS_FUNCTION name="define" resultname="IDENTIFIER">
<CMS_PARAM name="source" value="CONSTANT" />
</CMS_FUNCTION>

Definition using expressions:

<CMS_FUNCTION name="define" resultname="IDENTIFIER">
<CMS_VALUE_PARAM name="source" value="EXPRESSION" />
</CMS_FUNCTION>

Definition of a template fragment (comparable with a section template):

<CMS_FUNCTION name="define" resultname="IDENTIFIER">
<CMS_CDATA_PARAM name="source">
<![CDATA[
BODY OF THE TEMPLATE FRAGMENT
]]>
</CMS_CDATA_PARAM>
</CMS_FUNCTION>

Using the define function

The define function is used to define a variable in the header area of a page or section template and to assign a value to the variable.

Example:

<CMS_FUNCTION name="define" resultname="NAME">
<CMS_CDATA_PARAM name="source">
<![CDATA[
...
]]>
</CMS_CDATA_PARAM>
</CMS_FUNCTION>

The define function can be used to specify conditional checks. The function delivers different return values depending on whether a given condition is fulfilled or not.

Examples of the define function

Several examples of use of the instruction within templates are shown in the following. The examples are intended to clearly show the specific effect of the instruction and provide help for the template developer when creating their own templates.

Important The examples displayed here must be adjusted for use within a project! For example, variable names must be changed to the specific variable names of the project in which the instruction is to be used.

1st Example: Definition of a string constant

<CMS_FUNCTION name="define" resultname="name">
<CMS_PARAM name="source" value="A constant" />
</CMS_FUNCTION>

In the example the return value of the define function is specified on the string A constant .

2nd Example: Definition with expressions

<CMS_FUNCTION name="define" resultname="name">
<CMS_VALUE_PARAM name="source" value="4 * 2 - 5" />
</CMS_FUNCTION>

The return value of the define function is specified with the expression 4 * 2 - 5 .

On invocation of the function with $CMS_VALUE(...)$ the result is determined. The example, on invocation with $CMS_VALUE(name)$, returns the value 3 .

3rd Example: Conditional evaluation

<CMS_FUNCTION name="define" resultname="name">
<CMS_CDATA_PARAM name="source">
<![CDATA[
$CMS_IF(!myVar.isEmpty)$
first_option
$CMS_ELSE$
second_option
$CMS_END_IF$
]]>
</CMS_CDATA_PARAM>
</CMS_FUNCTION>

In the code example given above the content of a variable myVar is checked. If the value of myVar is null, the return value of the define function returns the first_option or, if this condition is not fulfilled, the second_option.

4th Example: Case differentiation

<CMS_FUNCTION name="define" resultname="name">
<CMS_CDATA_PARAM name="source">
<![CDATA[
$CMS_SWITCH(myVar.toString)$
Standard_option
$CMS_CASE("ABC")$
first_option
$CMS_CASE("DEF")$
second_option
$CMS_CASE("XYZ")$
n-th_option
$CMS_END_SWITCH$
]]>
</CMS_CDATA_PARAM>
</CMS_FUNCTION>

In the code example given above the content of a variable myVar is checked. If the value of myVar is ABC, the return value of the define function returns the first_option , if the value is DEF, it returns the second_option, etc.

Any number of different conditions can be checked.

© 2005 - 2015 e-Spirit AG | All rights reserved. | Last change: 2010-12-15