Archived

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

From Joomla! Documentation

< Archived:Developing a MVC Component
m (→‎Contributors: removing category manual, too broad of a category)
(25 intermediate revisions by 11 users not shown)
Line 1: Line 1:
{{underconstruction}}
+
{{:Developing a Model-View-Controller Component/2.5}}
  
 
== Requirements ==
 
== Requirements ==
You need Joomla! 1.6 or greater for this tutorial.
+
You need Joomla! 2.5 (with  PHP, MySQL, Apache and Microsoft II) or greater for this tutorial.
  
 
== Introduction ==
 
== Introduction ==
Joomla !1.6 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 15: Line 15:
  
 
Both are called ''com_componentname/componentname.php'' (the ''com_'' prefix is a historical trace)
 
Both are called ''com_componentname/componentname.php'' (the ''com_'' prefix is a historical trace)
 
== Developing the component ==
 
* [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 01|Developing a Basic Component]]
 
* [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 02|Adding a view to the site part]]
 
* [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 03|Adding a menu type to the backend part]]
 
* [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 04|Adding a model to the site part]]
 
* [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 05|Adding a variable request in the menu type]]
 
* [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 06|Using the database]]
 
* [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 07|Basic backend]]
 
* [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Part 08|Adding language management]]
 
  
 
== Contributors ==
 
== Contributors ==
Line 30: Line 20:
  
 
[[Category:Development]]
 
[[Category:Development]]
[[category:Joomla! 1.6]]
+
[[Category:Joomla! 1.6]]
[[category:Manual]]
+
[[Category:Joomla! 1.7]]
 +
[[Category:Joomla! 2.5]]

Revision as of 12:32, 25 September 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.

  1. REDIRECT Archived:Developing a MVC Component

Requirements[edit]

You need Joomla! 2.5 (with PHP, MySQL, Apache and Microsoft II) 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)

Contributors[edit]