Archived

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

From Joomla! Documentation

< Archived:Creating a simple module
(Add navigation bar)
(Grammar)
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 ==

Revision as of 04:10, 10 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]