J2.5:Developing a MVC Component/Introduction
From Joomla! Documentation
< J2.5:Developing a MVC Component(Difference between revisions)
(→Introduction) |
(→Developing the component) |
||
| Line 17: | Line 17: | ||
== Developing the component == | == Developing the component == | ||
| − | * [[Developing a | + | * [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 1|Developing a Basic Component]] |
| + | * [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 2|Adding a view]] | ||
== Contributors == | == Contributors == | ||
Revision as of 02:23, 3 November 2009
| This article or section is in the process of an expansion or major restructuring. You are welcome to assist in its construction by editing it as well. If this article or section has not been edited in several days, please remove this template. This article was last edited by Cdemko (talk| contribs) 3 years ago. (Purge) |
Contents |
Requirements
You need Joomla! 1.6 or greater for this tutorial.
Introduction
Joomla !1.6 is constructed using three different applications:
- the installation application (used for installing Joomla)
- the administrator one (used for managing content)
- the public one (used for displaying content)
The installation application is used once. The administrator and public ones 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 due to historical reasons)