J3.x

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

From Joomla! Documentation

< J3.x:Creating a simple module
(Marked this version for translation)
Line 19: Line 19:
  
 
<div class="row">  
 
<div class="row">  
<div class="large-6 columns">{{Basic button|<translate>S:MyLanguage/J3.x:Creating_a_simple_module|Prev: Introduction</translate>|class=expand success}}</div>
+
<div class="large-6 columns">{{Basic button|<translate><!--T:7-->
<div class="large-6 columns">{{Basic button|<translate>S:MyLanguage/J3.x:Creating_a_simple_module/Developing_a_Basic_Module|Next: Developing a Basic Module</translate>|class=expand}}</div>
+
S:MyLanguage/J3.x:Creating_a_simple_module|Prev: Introduction</translate>|class=expand success}}</div>
 +
<div class="large-6 columns">{{Basic button|<translate><!--T:8-->
 +
S:MyLanguage/J3.x:Creating_a_simple_module/Developing_a_Basic_Module|Next: Developing a Basic Module</translate>|class=expand}}</div>
 
</div>
 
</div>
  

Revision as of 07:39, 28 June 2015

Other languages:
Bahasa Indonesia • ‎Deutsch • ‎English • ‎Nederlands • ‎español • ‎français • ‎português • ‎português do Brasil • ‎русский • ‎中文(台灣)‎


Joomla! 3.x 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)

Requirements[edit]

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

Contributors[edit]