Difference between revisions of "What is the purpose of the templateDetails.xml file?"

From Joomla! Documentation

m (removed Category:Parameters using HotCat)
(Several markup changes.)
 
(61 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{RightTOC}}
+
<noinclude><languages /></noinclude>
The templateDetails.xml file holds a variety of meta-data used by the [[Screen.templates.15|Template Manager]] in installation and maintenance. It is helpful to recognize the different sections of the file.  Typically, each section of data is indented to make the file more readable, but this indentation is not necessary.
 
  
===Basic Details===
+
<translate>
The initial display of the Template Manager shows a list of available templates and basic details relating to the template. Each of these bits of information is gathered from the templateDetails.xml file.
+
<!--T:1-->
 +
The ''templateDetails.xml'' file is required for Joomla! templates and it can be found in the root template directory of any template inside the Joomla! ''templates'' directory. This XML file holds the metadata that Joomla! needs to display and provide it as template option in the Backend. It also contains a variety of other metadata that is used to provide information about the template and the template authors and define files and folders that are used by the template. It also defines template language files, as well as parameters and settings the template will offer in the Backend.
 +
</translate>
  
[[Image:template_details_basic.png]]
+
<translate>
 +
<!--T:2-->
 +
The ''templateDetails.xml'' file uses a basic XML format and structure. The XML data in this file is separated into sections and specifically formatted to render the various pieces and parameters. The XML data is read and parsed by powerful tools in the Joomla! core, then rendered to register the template and create the display seen in the ''Template Manager''. This provides template developers a simple method for creating assignments, settings and parameters for use in the template.
 +
</translate>
  
 +
<translate>
 +
<!--T:3-->
 +
The implementation of ''templateDetails.xml'' will vary from template to template; it can be simple or complex depending on what features the template offers. The default Joomla! 3 Protostar template serves as an excellent example to demonstrate how this file is used. The various sections of this file are explained below.
 +
</translate>
  
<source lang="xml">
+
<translate>
<install version="1.5" type="template">
+
===XML Format=== <!--T:4-->
    <name>rhuk_milkyway</name>
+
The top two lines of every ''templateDetails.xml'' file need to start with defining the XML format and ''doctype''.
    <creationDate>11/20/06</creationDate>
+
</translate>
    <author>Andy Miller</author>
 
    <authorEmail>rhuk@rockettheme.com.com</authorEmail>
 
    <authorUrl>http://www.rockettheme.com</authorUrl>
 
    <copyright></copyright>
 
    <license>GNU/GPL</license>
 
    <version>1.0.2</version>
 
    <description>TPL_RHUK_MILKYWAY</description>
 
</source>
 
  
 +
<syntaxhighlight lang="xml">
 +
<?xml version="1.0" encoding="utf-8"?>
 +
<!DOCTYPE install PUBLIC "-//Joomla! 2.5//DTD template 1.0//EN" "http://www.joomla.org/xml/dtd/2.5/template-install.dtd">
 +
</syntaxhighlight>
  
===File Structure===
+
<translate>
All files related to the template are listed. Each filename contains full path information starting at the template root.  The Administrator's Installer uses this information when storing the files during installation.
+
<!--T:5-->
 +
The next line is also required as it tells Joomla! that the data in this file is to be used for an extension, in this case a template. All template data is contained within this ''<extension>'' tag, and the file concludes by closing this tag ''</extension>''.
 +
</translate>
  
A small portion of the files listed in the rhuk_milkyway template is given below.
+
<syntaxhighlight lang="xml">
 +
<extension version="3.1" type="template" client="site">
 +
</syntaxhighlight>
  
<source lang="xml">
+
<translate>
    <files>
+
===Basic Details=== <!--T:6-->
<filename>index.php</filename>
+
The first section is generally where template developers include information about the template. Information such as names, dates, contact information, copyrights, version number and a basic description are common. This data is used in the Template Manager and is shown in the list of available templates and can be displayed in the template editing screens as well.
<filename>templateDetails.xml</filename>
+
</translate>
<filename>template_thumbnail.png</filename>
 
<filename>params.ini</filename>
 
<filename>images/arrow.png</filename>
 
<filename>images/indent1.png</filename>
 
    </files>
 
</source>
 
  
Optional and highly recommended file structure --
+
<translate>
 +
<!--T:7-->
 +
'''Template Basic Details as seen in Template Manager > Templates'''
 +
</translate>
  
 +
[[File:J3 template details-<translate><!--T:8-->
 +
en</translate>.jpg|500px|thumbnail|none|<translate><!--T:9-->
 +
Template Details example</translate>]]
  
<source lang="xml">
+
<translate>
<files>
+
<!--T:10-->
<filename>index.php</filename>
+
'''Protostar XML code for basic details:'''
<filename>component.php</filename>
+
</translate>
<filename>templateDetails.xml</filename>
 
<filename>template_thumbnail.png</filename>
 
<filename>params.ini</filename>
 
<folder>images/</folder>
 
        <folder>css/</folder>
 
    </files>
 
</source>
 
  
===Languages===
+
<syntaxhighlight lang="xml">
Some templates may include language files to allow translation of static text in the template. Notice that two language files are shown below. The first holds the language file for text that will be viewed by the User.  The second, placed within <administration> tags, is for text that will be viewed by the Administrator.
+
<extension version="3.1" type="template" client="site">
 +
<name>protostar</name>
 +
<version>1.0</version>
 +
<creationDate>4/30/2012</creationDate>
 +
<author>Kyle Ledbetter</author>
 +
<authorEmail>admin@joomla.org</authorEmail>
 +
<copyright>Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.</copyright>
 +
<description>TPL_PROTOSTAR_XML_DESCRIPTION</description>
 +
</syntaxhighlight>
  
 +
<translate>
 +
<!--T:11-->
 +
You may notice that the final line of this code, the description, contains a language string and not the actual description. This string references a language file in the template where the actual description is defined and written. This is a preferred method in Joomla! for extensions that are distributed for public use to accommodate international language support, however one could simply type the description if translation is not a concern. The language files are also defined in the ''templateDetails.xml'' file, in the language section, which is covered in more detail later in this article.
 +
</translate>
  
<source lang="xml">
+
<translate>
<languages>
+
<!--T:12-->
<language tag="en-GB">en-GB.tpl_beez.ini</language>
+
'''Template Description seen in Protostar Editor'''
    </languages>
+
</translate>
    <administration>
+
[[Image:J3_protostar_editor_details-<translate><!--T:13-->
<languages folder="admin">
+
en</translate>.jpg|500px|thumbnail|none|<translate><!--T:14-->
    <language tag="en-GB">en-GB.tpl_beez.ini</language>
+
Template Details example</translate>]]
 +
 
 +
<translate>
 +
===Folder Structure=== <!--T:15-->
 +
All folders related to the template installation are listed here. All files and folders located in the root of the template directory during installation need to be listed here. Any files contained inside a folder that is listed are automatically included. Each folder contains full path information starting at the template root. The Administrator's installer uses this information when storing the files during installation.
 +
</translate>
 +
 
 +
<translate>
 +
<!--T:16-->
 +
Below is the file and folder structure from the default Protostar template. This is a standard file structure for a basic Joomla! template.
 +
</translate>
 +
 
 +
<syntaxhighlight lang="xml">
 +
<files>
 +
<filename>component.php</filename>
 +
<filename>error.php</filename>
 +
<filename>favicon.ico</filename>
 +
<filename>index.php</filename>
 +
<filename>templateDetails.xml</filename>
 +
<filename>template_preview.png</filename>
 +
<filename>template_thumbnail.png</filename>
 +
<folder>css</folder>
 +
<folder>html</folder>
 +
<folder>images</folder>
 +
<folder>img</folder>
 +
<folder>js</folder>
 +
<folder>language</folder>
 +
<folder>less</folder>
 +
</files>
 +
</syntaxhighlight>
 +
 
 +
<translate>
 +
<!--T:17-->
 +
'''File directory view of J3 Protostar'''
 +
</translate>
 +
 
 +
[[Image:J3_protostar_file_structure_<translate><!--T:18-->
 +
en</translate>.jpg|500px|thumbnail|none]]
 +
 
 +
<translate>
 +
===Module Positions=== <!--T:19-->
 +
The available [[S:MyLanguage/Module Position|Module Positions]] that can be used in the template are defined in this area.
 +
</translate>
 +
 
 +
<translate>
 +
<!--T:20-->
 +
These are the module positions defined in the default Protostar template:
 +
</translate>
 +
 
 +
<syntaxhighlight lang="xml">
 +
<positions>
 +
<position>banner</position>
 +
<position>debug</position>
 +
<position>position-0</position>
 +
<position>position-1</position>
 +
<position>position-2</position>
 +
<position>position-3</position>
 +
<position>position-4</position>
 +
<position>position-5</position>
 +
<position>position-6</position>
 +
<position>position-7</position>
 +
<position>position-8</position>
 +
<position>position-9</position>
 +
<position>position-10</position>
 +
<position>position-11</position>
 +
<position>position-12</position>
 +
<position>position-13</position>
 +
<position>position-14</position>
 +
<position>footer</position>
 +
</positions>
 +
</syntaxhighlight>
 +
 
 +
<translate>
 +
<!--T:21-->
 +
The list of positions are contained within the ''<positions>'' tag. Each ''<position>'' tag creates a module position that is available from the position list in the module manager and in other areas of Joomla! where module positions can be selected.
 +
</translate>
 +
 
 +
<translate>
 +
<!--T:22-->
 +
The simple format of the position list means it can be easily customized. For example, to add a new module position to the list, simply add a new ''<position>'' tag inside the ''<positions>'' tag with a unique name using all lowercase letters with no spaces. Keep in mind, this only adds the position to the Backend and additional development in other template files is required to render the new position on the front end.
 +
</translate>
 +
 
 +
<translate>
 +
===Languages=== <!--T:23-->
 +
Some templates may include language files to allow translation of static text in the template. Notice that the language folder is defined and the two language files inside are also included. Even though the language folder was defined earlier, these files need their own definitions. This method tells Joomla! where the language files that contain strings used by the template reside.
 +
</translate>
 +
 
 +
<translate>
 +
<!--T:24-->
 +
The first file holds the language file for text that will be viewed by the User. The second file, with the ''.sys'', or system, extension is for text that will be viewed in the Administrator area.
 +
</translate>
 +
 
 +
<translate>
 +
<!--T:25-->
 +
This is the language folder and file structure from the default Protostar template:
 +
</translate>
 +
 
 +
<syntaxhighlight lang="xml">
 +
<languages folder="language">
 +
<language tag="en-GB">en-GB/en-GB.tpl_protostar.ini</language>
 +
<language tag="en-GB">en-GB/en-GB.tpl_protostar.sys.ini</language>
 
</languages>
 
</languages>
    </administration>
+
</syntaxhighlight>
</source>
+
 
 +
<translate>
 +
<!--T:26-->
 +
Language strings are used in templates and throughout Joomla! for the purpose of utilizing the extensive international language support features in Joomla!. This method provides developers and users with a relatively simple method to translate any text that is used in templates and extension screens. Joomla! will check the language files for any language strings that are used and load the corresponding text in the language chosen by the user in place of the string. In this instance, there are only files for English (en-GB), any text translations in other languages must be provided by Users or Developers before they can be used by Joomla!.
 +
</translate>
 +
 
 +
<translate>
 +
<!--T:27-->
 +
'''More information about Language Files:'''
 +
 
 +
<!--T:28-->
 +
*[[S:MyLanguage/Creating_a_language_definition_file|Creating a Language Definition File]]
 +
*[[S:MyLanguage/Loading_extra_language_files|Loading extra language files]]
 +
</translate>
 +
 
 +
<translate>
 +
===Parameters=== <!--T:29-->
 +
</translate>
 +
 
 +
[[File:J3 protostar advanced parameters-<translate><!--T:30-->
 +
en</translate>.jpg|thumb|right|<translate><!--T:31-->
 +
Protostar Advanced Parameters Screen</translate>]]
 +
 
 +
<translate>
 +
<!--T:32-->
 +
A template may offer display options and other parameters that can be chosen by the Administrator in the Template Manager. For instance, the default Protostar template allows the Administrator to change various colors, fonts and add a logo, these parameters are found under the Advanced tab, which is also defined and created by the XML parameters.
 +
</translate>
 +
 
 +
<translate>
 +
<!--T:33-->
 +
Template parameters are contained inside a ''<config>'' tag, which contains a ''<fields>'' tag with a ''name attribute'' of ''params''. Inside the ''<fields>'' tag is where the parameter groups and individual parameters are defined. The ''<fieldset>'' tag is used to create groups of parameters. Individual parameters are defined with the ''<field>'' tag.
 +
</translate>
 +
 
 +
<translate>
 +
<!--T:34-->
 +
Each ''<fieldset>'', and each ''<field>'' parameter within a ''<fieldset>'', require a unique name defined by the ''name attribute''. This name defines the parameter itself and is used to pass settings to the front end files. Each parameter should also contain a ''label attribute'' and ''description attribute''. The label text appears with the parameter in the settings screen to identify what the setting is used for and more detailed information can be included in the description.
 +
</translate>
 +
 
 +
<translate>
 +
<!--T:35-->
 +
A parameter field can be virtually any type of form input with corresponding options, this is selected by the ''type attribute''. Any necessary options, such as radio button or select choices, are defined in ''<option>'' tags. CSS class names can be defined with the ''class attribute'' and a default parameter setting can be defined using the ''default attribute''.
 +
</translate>
 +
 
 +
<translate>
 +
<!--T:36-->
 +
Below are the parameter definitions in the default Protostar Template. In this example, all Labels, Descriptions and Options use language string definitions from the Language files defined in the previous section, as well as some from the Joomla! core, so they can be translated into different languages as necessary.
 +
</translate>
 +
 
 +
<syntaxhighlight lang="xml">
 +
<config>
 +
<fields name="params">
 +
<fieldset name="advanced">
 +
<field name="templateColor" class="" type="color" default="#08C"
 +
label="TPL_PROTOSTAR_COLOR_LABEL"
 +
description="TPL_PROTOSTAR_COLOR_DESC" />
 +
 
 +
<field name="templateBackgroundColor" class="" type="color" default="#F4F6F7"
 +
label="TPL_PROTOSTAR_BACKGROUND_COLOR_LABEL"
 +
description="TPL_PROTOSTAR_BACKGROUND_COLOR_DESC" />
  
===Module Positions===
+
<field name="logoFile" class="" type="media" default=""
The available [[module_positions|Module Positions]] that can be used in the template are defined.
+
label="TPL_PROTOSTAR_LOGO_LABEL"
 +
description="TPL_PROTOSTAR_LOGO_DESC" />
  
<source lang="xml">
+
<field name="sitetitle"  type="text" default=""
    <positions>
+
label="JGLOBAL_TITLE"
<position>breadcrumb</position>
+
description="JFIELD_ALT_PAGE_TITLE_LABEL"
<position>left</position>
+
filter="string" />
<position>right</position>
 
<position>top</position>
 
<position>user1</position>
 
<position>user2</position>
 
<position>user3</position>
 
<position>user4</position>
 
<position>footer</position>
 
<position>debug</position>
 
<position>syndicate</position>
 
    </positions>
 
</source>
 
  
===Parameters===
+
<field name="sitedescription"  type="text" default=""
A template may offer display options that can be chosen by the Administrator in the Template Manager.  For instance, the rhuk_milkyway template allows the Administrator to change the border colors, change the background color, and define the display width. 
+
label="JGLOBAL_DESCRIPTION"
 +
description="JGLOBAL_SUBHEADING_DESC"
 +
filter="string" />
  
[[Image:template_details_params.png]]
+
<field name="googleFont"
 +
type="radio"
 +
class="btn-group btn-group-yesno"
 +
default="1"
 +
label="TPL_PROTOSTAR_FONT_LABEL"
 +
description="TPL_PROTOSTAR_FONT_DESC"
 +
>
 +
<option value="1">JYES</option>
 +
<option value="0">JNO</option>
 +
</field>
  
An example of adding a parameter and its values is shown below.
+
<field name="googleFontName" class="" type="text" default="Open+Sans"
 +
label="TPL_PROTOSTAR_FONT_NAME_LABEL"
 +
description="TPL_PROTOSTAR_FONT_NAME_DESC" />
  
<source lang="xml">
+
<field name="fluidContainer"
    <params>
+
type="radio"
<param name="colorVariation" type="list" default="white" label="Color Variation" description="Color variation to use">
+
class="btn-group btn-group-yesno"
    <option value="blue">Blue</option>
+
default="0"
    <option value="red">Red</option>
+
label="TPL_PROTOSTAR_FLUID_LABEL"
    <option value="green">Green</option>
+
description="TPL_PROTOSTAR_FLUID_DESC"
    <option value="orange">Orange</option>
+
>
    <option value="black">Black</option>
+
<option value="1">TPL_PROTOSTAR_FLUID</option>
    <option value="white">White</option>
+
<option value="0">TPL_PROTOSTAR_STATIC</option>
</param>
+
</field>
    </params>
+
</fieldset>
</source>
+
</fields>
 +
</config>
 +
</syntaxhighlight>
  
For more information about working with Parameters, see:
+
<translate>
 +
<!--T:37-->
 +
The Protostar template illustrates different ways that XML can be used in a template interface, but there are many more possibilities. In this example, the ''<fieldset name="advanced">'' tag encloses all of the parameters and it uses the ''name attribute'' to create the ''Advanced'' tab in the interface. All that is necessary to create another tab in the interface is another ''<fieldset>'' tag with a different ''name attribute''. With this in mind, it is simple to create as many additional tabs and parameters as necessary in a template.
 +
</translate>
  
: [[Defining a parameter in templateDetails.xml]]
+
<translate>
: [[Retrieving parameter data in a template file]]
+
===Additional Resources=== <!--T:38-->
 +
*[[S:MyLanguage/Creating_a_basic_Joomla!_template|More information about Creating a Joomla! Template]]
 +
*[[S:MyLanguage/Creating_a_language_definition_file|Creating a Language Definition File]]
 +
*[[S:MyLanguage/Loading_extra_language_files|Loading extra language files]]
 +
*[[S:MyLanguage/Defining_a_parameter_in_templateDetails.xml|Defining a parameter in templateDetails.xml]]
 +
</translate>
  
<noinclude>
+
<translate>
 +
<!--T:39-->
 
[[Category:Template Development]]
 
[[Category:Template Development]]
 
[[Category:Template Development FAQ]]
 
[[Category:Template Development FAQ]]
</noinclude>
+
</translate>

Latest revision as of 10:22, 5 November 2022

Other languages:
Deutsch • ‎English • ‎Nederlands • ‎español • ‎français • ‎português do Brasil • ‎русский

The templateDetails.xml file is required for Joomla! templates and it can be found in the root template directory of any template inside the Joomla! templates directory. This XML file holds the metadata that Joomla! needs to display and provide it as template option in the Backend. It also contains a variety of other metadata that is used to provide information about the template and the template authors and define files and folders that are used by the template. It also defines template language files, as well as parameters and settings the template will offer in the Backend.

The templateDetails.xml file uses a basic XML format and structure. The XML data in this file is separated into sections and specifically formatted to render the various pieces and parameters. The XML data is read and parsed by powerful tools in the Joomla! core, then rendered to register the template and create the display seen in the Template Manager. This provides template developers a simple method for creating assignments, settings and parameters for use in the template.

The implementation of templateDetails.xml will vary from template to template; it can be simple or complex depending on what features the template offers. The default Joomla! 3 Protostar template serves as an excellent example to demonstrate how this file is used. The various sections of this file are explained below.

XML Format[edit]

The top two lines of every templateDetails.xml file need to start with defining the XML format and doctype.

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE install PUBLIC "-//Joomla! 2.5//DTD template 1.0//EN" "http://www.joomla.org/xml/dtd/2.5/template-install.dtd">

The next line is also required as it tells Joomla! that the data in this file is to be used for an extension, in this case a template. All template data is contained within this <extension> tag, and the file concludes by closing this tag </extension>.

<extension version="3.1" type="template" client="site">

Basic Details[edit]

The first section is generally where template developers include information about the template. Information such as names, dates, contact information, copyrights, version number and a basic description are common. This data is used in the Template Manager and is shown in the list of available templates and can be displayed in the template editing screens as well.

Template Basic Details as seen in Template Manager > Templates

Template Details example

Protostar XML code for basic details:

<extension version="3.1" type="template" client="site">
	<name>protostar</name>
	<version>1.0</version>
	<creationDate>4/30/2012</creationDate>
	<author>Kyle Ledbetter</author>
	<authorEmail>admin@joomla.org</authorEmail>
	<copyright>Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.</copyright>
	<description>TPL_PROTOSTAR_XML_DESCRIPTION</description>

You may notice that the final line of this code, the description, contains a language string and not the actual description. This string references a language file in the template where the actual description is defined and written. This is a preferred method in Joomla! for extensions that are distributed for public use to accommodate international language support, however one could simply type the description if translation is not a concern. The language files are also defined in the templateDetails.xml file, in the language section, which is covered in more detail later in this article.

Template Description seen in Protostar Editor

Template Details example

Folder Structure[edit]

All folders related to the template installation are listed here. All files and folders located in the root of the template directory during installation need to be listed here. Any files contained inside a folder that is listed are automatically included. Each folder contains full path information starting at the template root. The Administrator's installer uses this information when storing the files during installation.

Below is the file and folder structure from the default Protostar template. This is a standard file structure for a basic Joomla! template.

	<files>
		<filename>component.php</filename>
		<filename>error.php</filename>
		<filename>favicon.ico</filename>
		<filename>index.php</filename>
		<filename>templateDetails.xml</filename>
		<filename>template_preview.png</filename>
		<filename>template_thumbnail.png</filename>
		<folder>css</folder>
		<folder>html</folder>
		<folder>images</folder>
		<folder>img</folder>
		<folder>js</folder>
		<folder>language</folder>
		<folder>less</folder>
	</files>

File directory view of J3 Protostar

J3 protostar file structure en.jpg

Module Positions[edit]

The available Module Positions that can be used in the template are defined in this area.

These are the module positions defined in the default Protostar template:

	<positions>
		<position>banner</position>
		<position>debug</position>
		<position>position-0</position>
		<position>position-1</position>
		<position>position-2</position>
		<position>position-3</position>
		<position>position-4</position>
		<position>position-5</position>
		<position>position-6</position>
		<position>position-7</position>
		<position>position-8</position>
		<position>position-9</position>
		<position>position-10</position>
		<position>position-11</position>
		<position>position-12</position>
		<position>position-13</position>
		<position>position-14</position>
		<position>footer</position>
	</positions>

The list of positions are contained within the <positions> tag. Each <position> tag creates a module position that is available from the position list in the module manager and in other areas of Joomla! where module positions can be selected.

The simple format of the position list means it can be easily customized. For example, to add a new module position to the list, simply add a new <position> tag inside the <positions> tag with a unique name using all lowercase letters with no spaces. Keep in mind, this only adds the position to the Backend and additional development in other template files is required to render the new position on the front end.

Languages[edit]

Some templates may include language files to allow translation of static text in the template. Notice that the language folder is defined and the two language files inside are also included. Even though the language folder was defined earlier, these files need their own definitions. This method tells Joomla! where the language files that contain strings used by the template reside.

The first file holds the language file for text that will be viewed by the User. The second file, with the .sys, or system, extension is for text that will be viewed in the Administrator area.

This is the language folder and file structure from the default Protostar template:

	<languages folder="language">
		<language tag="en-GB">en-GB/en-GB.tpl_protostar.ini</language>
		<language tag="en-GB">en-GB/en-GB.tpl_protostar.sys.ini</language>
	</languages>

Language strings are used in templates and throughout Joomla! for the purpose of utilizing the extensive international language support features in Joomla!. This method provides developers and users with a relatively simple method to translate any text that is used in templates and extension screens. Joomla! will check the language files for any language strings that are used and load the corresponding text in the language chosen by the user in place of the string. In this instance, there are only files for English (en-GB), any text translations in other languages must be provided by Users or Developers before they can be used by Joomla!.

More information about Language Files:

Parameters[edit]

Protostar Advanced Parameters Screen

A template may offer display options and other parameters that can be chosen by the Administrator in the Template Manager. For instance, the default Protostar template allows the Administrator to change various colors, fonts and add a logo, these parameters are found under the Advanced tab, which is also defined and created by the XML parameters.

Template parameters are contained inside a <config> tag, which contains a <fields> tag with a name attribute of params. Inside the <fields> tag is where the parameter groups and individual parameters are defined. The <fieldset> tag is used to create groups of parameters. Individual parameters are defined with the <field> tag.

Each <fieldset>, and each <field> parameter within a <fieldset>, require a unique name defined by the name attribute. This name defines the parameter itself and is used to pass settings to the front end files. Each parameter should also contain a label attribute and description attribute. The label text appears with the parameter in the settings screen to identify what the setting is used for and more detailed information can be included in the description.

A parameter field can be virtually any type of form input with corresponding options, this is selected by the type attribute. Any necessary options, such as radio button or select choices, are defined in <option> tags. CSS class names can be defined with the class attribute and a default parameter setting can be defined using the default attribute.

Below are the parameter definitions in the default Protostar Template. In this example, all Labels, Descriptions and Options use language string definitions from the Language files defined in the previous section, as well as some from the Joomla! core, so they can be translated into different languages as necessary.

	<config>
		<fields name="params">
			<fieldset name="advanced">
				<field name="templateColor" class="" type="color" default="#08C"
					label="TPL_PROTOSTAR_COLOR_LABEL"
					description="TPL_PROTOSTAR_COLOR_DESC" />

				<field name="templateBackgroundColor" class="" type="color" default="#F4F6F7"
					label="TPL_PROTOSTAR_BACKGROUND_COLOR_LABEL"
					description="TPL_PROTOSTAR_BACKGROUND_COLOR_DESC" />

				<field name="logoFile" class="" type="media" default=""
					label="TPL_PROTOSTAR_LOGO_LABEL"
					description="TPL_PROTOSTAR_LOGO_DESC" />

				<field name="sitetitle"  type="text" default=""
					label="JGLOBAL_TITLE"
					description="JFIELD_ALT_PAGE_TITLE_LABEL"
					filter="string" />

				<field name="sitedescription"  type="text" default=""
					label="JGLOBAL_DESCRIPTION"
					description="JGLOBAL_SUBHEADING_DESC"
					filter="string" />

				<field name="googleFont"
					type="radio"
					class="btn-group btn-group-yesno"
					default="1"
					label="TPL_PROTOSTAR_FONT_LABEL"
					description="TPL_PROTOSTAR_FONT_DESC"
				>
					<option value="1">JYES</option>
					<option value="0">JNO</option>
				</field>

				<field name="googleFontName" class="" type="text" default="Open+Sans"
					label="TPL_PROTOSTAR_FONT_NAME_LABEL"
					description="TPL_PROTOSTAR_FONT_NAME_DESC" />

				<field name="fluidContainer"
					type="radio"
					class="btn-group btn-group-yesno"
					default="0"
					label="TPL_PROTOSTAR_FLUID_LABEL"
					description="TPL_PROTOSTAR_FLUID_DESC"
				>
					<option value="1">TPL_PROTOSTAR_FLUID</option>
					<option value="0">TPL_PROTOSTAR_STATIC</option>
				</field>
			</fieldset>
		</fields>
	</config>

The Protostar template illustrates different ways that XML can be used in a template interface, but there are many more possibilities. In this example, the <fieldset name="advanced"> tag encloses all of the parameters and it uses the name attribute to create the Advanced tab in the interface. All that is necessary to create another tab in the interface is another <fieldset> tag with a different name attribute. With this in mind, it is simple to create as many additional tabs and parameters as necessary in a template.

Additional Resources[edit]