Archived

Creating a simple module/Introduction: Difference between revisions

From Joomla! Documentation

Wilsonge (talk | contribs)
Add introduction page
 
Wilsonge (talk | contribs)
Add navigation bar
Line 1: Line 1:
{{Chunk25:Creating a Simple Module for Joomla!2.5 - Contents}}
== Requirements ==
== Requirements ==
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)
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)

Revision as of 09:07, 10 May 2013

Requirements

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

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.

Both are called mod_modulename/modulename.php (the mod_ prefix is a historical trace)

Contributors