<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Cw86</id>
	<title>Joomla! Documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Cw86"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/Cw86"/>
	<updated>2026-09-14T14:28:19Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Talk:Jdoc_statements&amp;diff=14427</id>
		<title>Talk:Jdoc statements</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Talk:Jdoc_statements&amp;diff=14427"/>
		<updated>2009-06-05T11:35:49Z</updated>

		<summary type="html">&lt;p&gt;Cw86: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Regarding &amp;amp;lt;jdoc:include type=&amp;quot;module&amp;quot; ... /&amp;amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
It should be explained that the name attribute will take the value from the type column in the module manager list by cutting off from the start the letters &amp;quot;mod_&amp;quot; and that one must also give the title attribute a value - otherwise rendered content will be empty.&lt;br /&gt;
&lt;br /&gt;
So, let&#039;s say I have three menu modules of type &amp;quot;mod_mainmenu&amp;quot; with the following titles: &amp;quot;Menu One&amp;quot;, &amp;quot;Menu Two&amp;quot;, &amp;quot;Menu Three&amp;quot;. I would need these elements in the template file to get their contents:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;module&amp;quot; name=&amp;quot;mainmenu&amp;quot; title=&amp;quot;Menu One&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;module&amp;quot; name=&amp;quot;mainmenu&amp;quot; title=&amp;quot;Menu Two&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;module&amp;quot; name=&amp;quot;mainmenu&amp;quot; title=&amp;quot;Menu Three&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cw86</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Jdoc_statements&amp;diff=14426</id>
		<title>Jdoc statements</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Jdoc_statements&amp;diff=14426"/>
		<updated>2009-06-05T11:35:27Z</updated>

		<summary type="html">&lt;p&gt;Cw86: /* Module */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:jdoc statements}}&lt;br /&gt;
{{jdoc}}&lt;br /&gt;
== jdoc:include ==&lt;br /&gt;
The &amp;lt;code&amp;gt;&amp;lt;jdoc:include /&amp;gt;&amp;lt;/code&amp;gt; statement is a Joomla! template&#039;s method of displaying content specific to the page being viewed. There are various &amp;lt;code&amp;gt;&amp;lt;jdoc:include /&amp;gt;&amp;lt;/code&amp;gt; statements, each returning a different part of a Joomla! page.&lt;br /&gt;
&lt;br /&gt;
== The type attribute ==&lt;br /&gt;
The &amp;lt;tt&amp;gt;type&amp;lt;/tt&amp;gt; attribute specifies the type of content to be rendered in place of the &amp;lt;code&amp;gt;&amp;lt;jdoc:include /&amp;gt;&amp;lt;/code&amp;gt; element. For example, the &amp;lt;code&amp;gt;&amp;lt;jdoc:include &#039;&#039;&#039;&#039;&#039;type=&amp;quot;head&amp;quot;&#039;&#039;&#039;&#039;&#039; /&amp;gt;&amp;lt;/code&amp;gt; statement uses the &amp;lt;code&amp;gt;type&amp;lt;/code&amp;gt; attribute &amp;lt;code&amp;gt;head&amp;lt;/code&amp;gt; (&amp;lt;code&amp;gt;type=&amp;quot;head&amp;quot;&amp;lt;/code&amp;gt;). (&#039;&#039;Note: Jdoc expressions require double quotes around attributes, and won&#039;t work with single quotes.&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
=== Component ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This element should only appear once in the &amp;lt;body&amp;gt; element of the Template to render the main content of the page with respect to the current page being viewed.&lt;br /&gt;
&lt;br /&gt;
=== Head ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This element should only appear once in the &amp;lt;head&amp;gt; element of the Template to render the content of the style, script and meta elements associated with the current page.&lt;br /&gt;
&lt;br /&gt;
=== Installation ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;installation&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This element is only used within the Joomla! Installer template and of no particular use in a Front-end or Back-end template. It&#039;s somewhat the equivalent to the &#039;component&#039; type, rendering the main content of an installation step.&lt;br /&gt;
&lt;br /&gt;
=== Message ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;message&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This element should only appear once in the &amp;lt;body&amp;gt; element of the Template to render system and error messages that occurred in the request.&lt;br /&gt;
&lt;br /&gt;
CSS styles for system messages can be found in templates\system\css\system.css&lt;br /&gt;
&lt;br /&gt;
=== Module ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;module&amp;quot; name=&amp;quot;breadcrumbs&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;module&amp;quot; name=&amp;quot;menu&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;module&amp;quot; name=&amp;quot;submenu&amp;quot; style=&amp;quot;rounded&amp;quot; id=&amp;quot;submenu-box&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This element renders a single module given by the &amp;lt;tt&amp;gt;name&amp;lt;/tt&amp;gt; attribute. The module in question must be published and accessible by the current user in order to become visible. Additional attributes can be provided to control the layout and appearance of the module, if supported.&lt;br /&gt;
&lt;br /&gt;
=== Modules ===&lt;br /&gt;
Modules are rendered on a page using one of the following code examples. The modules are separated into different areas of a template using template positions set in the &amp;lt;code&amp;gt;templatedetails.xml&amp;lt;/code&amp;gt; file. Using the &amp;lt;code&amp;gt;jdoc:include&amp;lt;/code&amp;gt;&#039;s &amp;lt;code&amp;gt;name=&amp;quot;&#039;&#039;[template position name]&#039;&#039;&amp;quot;&amp;lt;/code&amp;gt; attribute, the various modules in their respective positions can be called, rendered, and styled separately. Additional attributes can be provided to control the layout and appearance of modules, if supported.&lt;br /&gt;
&lt;br /&gt;
Below are some examples of module statements with module positions used frequently by Joomla! theme developers.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;debug&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;icon&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;left&amp;quot; style=&amp;quot;rounded&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;left&amp;quot; style=&amp;quot;xhtml&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;right&amp;quot; style=&amp;quot;xhtml&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;status&amp;quot;  /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;syndicate&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;title&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;toolbar&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; style=&amp;quot;xhtml&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;user1&amp;quot; style=&amp;quot;xhtml&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;user2&amp;quot; style=&amp;quot;xhtml&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;user3&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;user4&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; The &amp;lt;code&amp;gt;name=&amp;quot;user3&amp;quot;&amp;lt;/code&amp;gt; module position is normally (by default) used for the top menu.&lt;br /&gt;
&lt;br /&gt;
==== The style attribute ====&lt;br /&gt;
The optional &amp;lt;code&amp;gt;style=&amp;quot;&amp;quot;&amp;lt;/code&amp;gt; attribute is available for the &amp;lt;code&amp;gt;module&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;modules&amp;lt;/code&amp;gt; types of &amp;lt;code&amp;gt;&amp;lt;jdoc:include /&amp;gt;&amp;lt;/code&amp;gt; statements. The attribute value refers to the [[What is module chrome?|chrome]] style used to wrap the output generated by the Module. If no style is provided, a value of &amp;quot;&amp;lt;code&amp;gt;none&amp;lt;/code&amp;gt;&amp;quot; is used by default.&lt;br /&gt;
&lt;br /&gt;
Template designers may add additional chrome names as described in [[Applying custom module chrome]].&lt;br /&gt;
[[Category:Templates]]&lt;/div&gt;</summary>
		<author><name>Cw86</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Jdoc_statements&amp;diff=14425</id>
		<title>Jdoc statements</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Jdoc_statements&amp;diff=14425"/>
		<updated>2009-06-05T11:35:07Z</updated>

		<summary type="html">&lt;p&gt;Cw86: /* Module */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:jdoc statements}}&lt;br /&gt;
{{jdoc}}&lt;br /&gt;
== jdoc:include ==&lt;br /&gt;
The &amp;lt;code&amp;gt;&amp;lt;jdoc:include /&amp;gt;&amp;lt;/code&amp;gt; statement is a Joomla! template&#039;s method of displaying content specific to the page being viewed. There are various &amp;lt;code&amp;gt;&amp;lt;jdoc:include /&amp;gt;&amp;lt;/code&amp;gt; statements, each returning a different part of a Joomla! page.&lt;br /&gt;
&lt;br /&gt;
== The type attribute ==&lt;br /&gt;
The &amp;lt;tt&amp;gt;type&amp;lt;/tt&amp;gt; attribute specifies the type of content to be rendered in place of the &amp;lt;code&amp;gt;&amp;lt;jdoc:include /&amp;gt;&amp;lt;/code&amp;gt; element. For example, the &amp;lt;code&amp;gt;&amp;lt;jdoc:include &#039;&#039;&#039;&#039;&#039;type=&amp;quot;head&amp;quot;&#039;&#039;&#039;&#039;&#039; /&amp;gt;&amp;lt;/code&amp;gt; statement uses the &amp;lt;code&amp;gt;type&amp;lt;/code&amp;gt; attribute &amp;lt;code&amp;gt;head&amp;lt;/code&amp;gt; (&amp;lt;code&amp;gt;type=&amp;quot;head&amp;quot;&amp;lt;/code&amp;gt;). (&#039;&#039;Note: Jdoc expressions require double quotes around attributes, and won&#039;t work with single quotes.&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
=== Component ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;component&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This element should only appear once in the &amp;lt;body&amp;gt; element of the Template to render the main content of the page with respect to the current page being viewed.&lt;br /&gt;
&lt;br /&gt;
=== Head ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;head&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This element should only appear once in the &amp;lt;head&amp;gt; element of the Template to render the content of the style, script and meta elements associated with the current page.&lt;br /&gt;
&lt;br /&gt;
=== Installation ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;installation&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This element is only used within the Joomla! Installer template and of no particular use in a Front-end or Back-end template. It&#039;s somewhat the equivalent to the &#039;component&#039; type, rendering the main content of an installation step.&lt;br /&gt;
&lt;br /&gt;
=== Message ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;message&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This element should only appear once in the &amp;lt;body&amp;gt; element of the Template to render system and error messages that occurred in the request.&lt;br /&gt;
&lt;br /&gt;
CSS styles for system messages can be found in templates\system\css\system.css&lt;br /&gt;
&lt;br /&gt;
=== Module ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;breadcrumbs&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;menu&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;submenu&amp;quot; style=&amp;quot;rounded&amp;quot; id=&amp;quot;submenu-box&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This element renders a single module given by the &amp;lt;tt&amp;gt;name&amp;lt;/tt&amp;gt; attribute. The module in question must be published and accessible by the current user in order to become visible. Additional attributes can be provided to control the layout and appearance of the module, if supported.&lt;br /&gt;
&lt;br /&gt;
=== Modules ===&lt;br /&gt;
Modules are rendered on a page using one of the following code examples. The modules are separated into different areas of a template using template positions set in the &amp;lt;code&amp;gt;templatedetails.xml&amp;lt;/code&amp;gt; file. Using the &amp;lt;code&amp;gt;jdoc:include&amp;lt;/code&amp;gt;&#039;s &amp;lt;code&amp;gt;name=&amp;quot;&#039;&#039;[template position name]&#039;&#039;&amp;quot;&amp;lt;/code&amp;gt; attribute, the various modules in their respective positions can be called, rendered, and styled separately. Additional attributes can be provided to control the layout and appearance of modules, if supported.&lt;br /&gt;
&lt;br /&gt;
Below are some examples of module statements with module positions used frequently by Joomla! theme developers.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;debug&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;icon&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;left&amp;quot; style=&amp;quot;rounded&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;left&amp;quot; style=&amp;quot;xhtml&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;right&amp;quot; style=&amp;quot;xhtml&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;status&amp;quot;  /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;syndicate&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;title&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;toolbar&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;top&amp;quot; style=&amp;quot;xhtml&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;user1&amp;quot; style=&amp;quot;xhtml&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;user2&amp;quot; style=&amp;quot;xhtml&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;user3&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;user4&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; The &amp;lt;code&amp;gt;name=&amp;quot;user3&amp;quot;&amp;lt;/code&amp;gt; module position is normally (by default) used for the top menu.&lt;br /&gt;
&lt;br /&gt;
==== The style attribute ====&lt;br /&gt;
The optional &amp;lt;code&amp;gt;style=&amp;quot;&amp;quot;&amp;lt;/code&amp;gt; attribute is available for the &amp;lt;code&amp;gt;module&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;modules&amp;lt;/code&amp;gt; types of &amp;lt;code&amp;gt;&amp;lt;jdoc:include /&amp;gt;&amp;lt;/code&amp;gt; statements. The attribute value refers to the [[What is module chrome?|chrome]] style used to wrap the output generated by the Module. If no style is provided, a value of &amp;quot;&amp;lt;code&amp;gt;none&amp;lt;/code&amp;gt;&amp;quot; is used by default.&lt;br /&gt;
&lt;br /&gt;
Template designers may add additional chrome names as described in [[Applying custom module chrome]].&lt;br /&gt;
[[Category:Templates]]&lt;/div&gt;</summary>
		<author><name>Cw86</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Talk:Jdoc_statements&amp;diff=14424</id>
		<title>Talk:Jdoc statements</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Talk:Jdoc_statements&amp;diff=14424"/>
		<updated>2009-06-05T11:34:49Z</updated>

		<summary type="html">&lt;p&gt;Cw86: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Regarding &amp;amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; ... /&amp;amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
It should be explained that the name attribute will take the value from the type column in the module manager list by cutting off from the start the letters &amp;quot;mod_&amp;quot; and that one must also give the title attribute a value - otherwise rendered content will be empty.&lt;br /&gt;
&lt;br /&gt;
So, let&#039;s say I have three menu modules of type &amp;quot;mod_mainmenu&amp;quot; with the following titles: &amp;quot;Menu One&amp;quot;, &amp;quot;Menu Two&amp;quot;, &amp;quot;Menu Three&amp;quot;. I would need these elements in the template file to get their contents:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;mainmenu&amp;quot; title=&amp;quot;Menu One&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;mainmenu&amp;quot; title=&amp;quot;Menu Two&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;mainmenu&amp;quot; title=&amp;quot;Menu Three&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cw86</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Talk:Jdoc_statements&amp;diff=14423</id>
		<title>Talk:Jdoc statements</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Talk:Jdoc_statements&amp;diff=14423"/>
		<updated>2009-06-05T11:32:21Z</updated>

		<summary type="html">&lt;p&gt;Cw86: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Regarding &amp;amp;lt;jdoc:include type=&amp;quot;module&amp;quot; ... /&amp;amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
It should be explained that the name attribute will take the value from the type column in the module manager list by cutting off from the start the letters &amp;quot;mod_&amp;quot; and that one must also give the title attribute a value - otherwise rendered content will be empty.&lt;br /&gt;
&lt;br /&gt;
So, let&#039;s say I have three menu modules of type &amp;quot;mod_mainmenu&amp;quot; with the following titles: &amp;quot;Menu One&amp;quot;, &amp;quot;Menu Two&amp;quot;, &amp;quot;Menu Three&amp;quot;. I would need these elements in the template file to get their contents:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;mainmenu&amp;quot; title=&amp;quot;Menu One&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;mainmenu&amp;quot; title=&amp;quot;Menu Two&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;mainmenu&amp;quot; title=&amp;quot;Menu Three&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cw86</name></author>
	</entry>
</feed>