Difference between revisions of "Module Position"

From Joomla! Documentation

m (added Category:Modules using HotCat)
m (intro info)
Line 1: Line 1:
 +
This article contains some development and advanced reading material. Joomla! Users and Administrators need to only understand the following:
 +
*Modules are set positions dictated by the template developer.
 +
*Modules can be turned on and off based on menu selection.
 +
*Modules can be reordered in their assigned position using the Module Manager.
 
{{Chunk:Module Position}}
 
{{Chunk:Module Position}}
 +
 
:[[Image:Module_Map.jpg|600px|Module positions in a default Joomla! 1.5 template]]
 
:[[Image:Module_Map.jpg|600px|Module positions in a default Joomla! 1.5 template]]
 +
 +
 
==templateDetails.xml==
 
==templateDetails.xml==
 
The <code>templateDetails.xml</code> 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.
 
The <code>templateDetails.xml</code> 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.
Line 19: Line 26:
 
</positions>
 
</positions>
 
</pre>
 
</pre>
 +
 
Although these are commonly used, it is up to the template developer to choose both a module position name and an accompanying display style.
 
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 <code><positions></code> and <code></positions></code> tags. In between those tags in the <code>templateDetails.xml</code> file, add the name of the module position in between a set of <code><position></code> and <code></position></code> tags.
 
The addition of module positions, as displayed above, is implemented in between the <code><positions></code> and <code></positions></code> tags. In between those tags in the <code>templateDetails.xml</code> file, add the name of the module position in between a set of <code><position></code> and <code></position></code> tags.

Revision as of 09:23, 29 September 2013

This article contains some development and advanced reading material. Joomla! Users and Administrators need to only understand the following:

  • Modules are set positions dictated by the template developer.
  • Modules can be turned on and off based on menu selection.
  • Modules can be reordered in their assigned position using the Module Manager.

<translate> A module position is a placeholder in a template. Placeholders identify one or several positions within the template and tell the Joomla! application where to place output from modules assigned to a particular position. The template designer has complete control over module positions, creating variations between templates and the respective Joomla! default positions assigned to modules in the installation sample data.

For example, the module position Left could be defined to be on the left side of the template to display a site navigation menu. So if a module is assigned the Left position, it will be displayed wherever the designer puts that Left module position - not necessarily the left side of the page. </translate>

Module positions in a default Joomla! 1.5 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.

Use and Implementation[edit]

A Joomla! template displays a set of modules added to a specific position using the <jdoc:include /> statement shown below (for further information about <jdoc:include /> see jdoc statements):

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

Visualization[edit]

It's possible to visualize all modules set on a template by calling the "tp=1" query string on the front-end.

http://www.yourdomain.com/index.php?tp=1

The default module positioning looks like the Module Map