Archived

Difference between revisions of "Creating a simple module/Introduction"

From Joomla! Documentation

< Archived:Creating a simple module
(Add navigation bar)
(Change development category to module development)
(One intermediate revision by the same user not shown)
Line 9: Line 9:
 
* public (used for displaying content)
 
* public (used for displaying content)
  
The installation application is used once. The administrator and public are used through the concept of ''components'' with ''modules''. Each module has a single entry point located in the ''modules'' directory.
+
The installation application is used once. The administrator and public are used through the concept of ''components'' with ''modules''. Each module has a single entry point located in the ''modules'' directory. This is called ''mod_modulename/modulename.php'' (the ''mod_'' prefix is a historical trace)
 
 
Both are called ''mod_modulename/modulename.php'' (the ''mod_'' prefix is a historical trace)
 
  
 
== Contributors ==
 
== Contributors ==
Line 17: Line 15:
  
 
<noinclude>
 
<noinclude>
[[Category:Development]]
+
[[Category:Module Development]]
 
[[Category:Joomla! 1.6]]
 
[[Category:Joomla! 1.6]]
 
[[Category:Joomla! 1.7]]
 
[[Category:Joomla! 1.7]]
 
[[Category:Joomla! 2.5]]
 
[[Category:Joomla! 2.5]]
 
</noinclude>
 
</noinclude>

Revision as of 08:24, 12 May 2013

This page has been archived. This page contains information for an unsupported Joomla! version or is no longer relevant. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Requirements[edit]

You need the latest version of Joomla! 2.5 (with PHP, MySQL, Apache and Microsoft II) for this tutorial (as of writing currently 2.5.11)

Introduction[edit]

Joomla! 2.5 is constructed using three different applications:

  • installation (used for installing Joomla)
  • administrator (used for managing content)
  • public (used for displaying content)

The installation application is used once. The administrator and public are used through the concept of components with modules. Each module has a single entry point located in the modules directory. This is called mod_modulename/modulename.php (the mod_ prefix is a historical trace)

Contributors[edit]