Archived

Developing a MVC Component/Introduction

From Joomla! Documentation

< Archived:Developing a MVC Component
Revision as of 12:42, 2 November 2009 by Cdemko (talk | contribs) (New page: {{underconstruction}} == Requirements == You need Joomla! 1.6 or greater for this tutorial. == Introduction == Joomla !1.6 is constructed using three different applications: * the instal...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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.

Documentation all together tranparent small.png
Under Construction

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) 14 years ago. (Purge)


Requirements[edit]

You need Joomla! 1.6 or greater for this tutorial.

Introduction[edit]

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)

Developing the component[edit]

Contributors[edit]