Difference between revisions of "Declaring module positions"

From Joomla! Documentation

m (headings)
m (link)
Line 1: Line 1:
In order for Module positions to be available for selection in the Module Manager they must be declared in the <code>templateDetails.xml</code> file for your template.  The <code><positions></code> element in this file contains sub-elements for each Module position that is supported by the template.
+
In order for Module positions to be available for selection in the Module Manager they must be [[Creating a basic templateDetails.xml file|declared in the templateDetails.xml]] file for your template.  The <code><positions></code> element in this file contains sub-elements for each Module position that is supported by the template.
  
 
==templateDetails.xml==
 
==templateDetails.xml==

Revision as of 00:00, 30 September 2013

In order for Module positions to be available for selection in the Module Manager they must be declared in the templateDetails.xml file for your template. The <positions> element in this file contains sub-elements for each Module position that is supported by the template.

templateDetails.xml[edit]

The templateDetails.xml file contains all the installation and core information for a template, including the module positions it utilizes and displays. Here is a brief list of the commonly used names for the various module positions.

<positions>
  <position>top</position>
  <position>left</position>
  <position>right</position>		
  <position>bottom</position>
  <position>banner</position>
  <position>syndicate</position>
  <position>footer</position>
  <position>user1</position>
  <position>user2</position>
  <position>user3</position>
  <position>user4</position>
  <position>debug</position>
</positions>

Although these are commonly used, it is up to the template developer to choose both a module position name and an accompanying display style.

The addition of module positions, as displayed above, is implemented in between the <positions> and </positions> tags. In between those tags in the templateDetails.xml file, add the name of the module position in between a set of <position> and </position> tags.

You can add and define new Module positions and give them any name you like, but it is recommended that you support at least those shown in the example above. This is so that some level of consistency is maintained when switching Templates or using multiple Templates on a single site.

Use and Implementation[edit]

A Joomla! template displays a set of modules added to a specific position using the <jdoc:include /> statement shown below:

<jdoc:include type="modules" name="name of module position" style="xhtml" />

For further information about <jdoc:include /> code and how to use it, see jdoc statements.

See also[edit]