Template parameters

The parameters described in the template description file can be used in template page body (see Description file). Rules of substitution of values of parameters are the same as when substituting predefined parameters. The difference is that for template parameters the indexing by the image number on the page is not provided. Substitution is occurring as follows: Plug-in is searching for the marker, described in description file and textually substitutes it for the value, received from the user.

Example:
<title>#TITLE#</title>

Where #TITLE# has the following description in template description file.

[Page1Param1]
Name=Title
DisplayName=Album Title
Description=Input your album title
Type=AC_EDIT
Tag=#TITLE#
DefaultValue=DEEP DIVING
			

So, user will see this parameter through User Interface as EDIT field with inscription "Album Title" near the field and description DEEP DIVING inside the field. If he'll substitute DEEP DIVING for My Diving, then in the body of the resulting album instead of
<title>#TITLE#</title>
will be
<title My Diving </title>

See Types of parameters description.