J2.5:Developing a MVC Component/Introduction
From Joomla! Documentation
< J2.5:Developing a MVC Component(Difference between revisions)
(→Developing the component) |
(→Developing the component) |
||
| Line 30: | Line 30: | ||
* [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 11|Adding verifications]] | * [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 11|Adding verifications]] | ||
* [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 12|Adding categories]] | * [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 12|Adding categories]] | ||
| − | * [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 13|Adding | + | * [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 13|Adding configuration]] |
| − | * [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 14|Adding an update server]] | + | * [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 14|Adding ACL]] |
| + | * [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 15|Adding an update server]] | ||
== Contributors == | == Contributors == | ||
Revision as of 06:48, 13 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:
- 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
- Developing a Basic Component
- Adding a view to the site part
- Adding a menu type to the backend part
- Adding a model to the site part
- Adding a variable request in the menu type
- Using the database
- Basic backend
- Adding language management
- Adding backend actions
- Adding decorations to the backend
- Adding verifications
- Adding categories
- Adding configuration
- Adding ACL
- Adding an update server