Archived

Difference between revisions of "Developing a MVC Component/Introduction"

From Joomla! Documentation

< Archived:Developing a MVC Component
(1.6 is not supported anymore)
Line 1: Line 1:
This tutorial is for {{JVer|1.7}}
+
This tutorial is for {{JVer|1.6}} {{JVer|1.7}} {{JVer|2.5}}
  
 
== Requirements ==
 
== Requirements ==
You need Joomla! 1.7 or greater for this tutorial.
+
You need Joomla! 2.5 or greater for this tutorial.
  
 
== Introduction ==
 
== Introduction ==
Joomla! 1.7 is constructed using three different applications:
+
Joomla! 2.5 is constructed using three different applications:
 
* installation (used for installing Joomla)
 
* installation (used for installing Joomla)
 
* administrator (used for managing content)
 
* administrator (used for managing content)
Line 17: Line 17:
  
 
== Developing the component ==
 
== Developing the component ==
{{Chunk:Developing a Model-View-Controller (MVC) Component for Joomla!1.7 - Contents}}
+
{{Chunk:Developing a Model-View-Controller (MVC) Component for Joomla!2.5 - Contents}}
  
 
== Contributors ==
 
== Contributors ==
Line 25: Line 25:
 
[[category:Joomla! 1.6]]
 
[[category:Joomla! 1.6]]
 
[[category:Joomla! 1.7]]
 
[[category:Joomla! 1.7]]
 +
[[category:Joomla! 2.5]]
 
[[category:Manual]]
 
[[category:Manual]]

Revision as of 09:55, 13 February 2012

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.

This tutorial is for Joomla 1.6 Joomla 1.7 Joomla 2.5

Requirements[edit]

You need Joomla! 2.5 or greater for this tutorial.

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. Each component has two entry points:

  • one is located in the components directory (it is used for displaying content)
  • one is located in the administrator/components directory (it is used for managing content)

Both are called com_componentname/componentname.php (the com_ prefix is a historical trace)

Developing the component[edit]


Contributors[edit]