Archived

Creating a simple module/Introduction

From Joomla! Documentation

< Archived:Creating a simple module
Revision as of 08:24, 12 May 2013 by Wilsonge (talk | contribs) (Change development category to module development)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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]