Portal

Difference between revisions of "Component Development"

From Joomla! Documentation

m (Adjusted link after page move)
(40 intermediate revisions by 9 users not shown)
Line 1: Line 1:
__NOTOC__
+
__TOC__
== Recommended Reading ==
+
{{:{{FULLPAGENAME}}/Intro}}
=== General ===
+
<hr>
* [[Joomla Beginning Developer Course]]
+
<div class="row">
* [[Setting up your workstation for Joomla! development]]
+
<div class="large-7 columns">
* [[Secure coding guidelines]]
+
==Intro to Component Development==
=== Specific ===
+
<onlyinclude>{{:Portal:Component_Development/Reading list}}</onlyinclude>
<onlyinclude>
+
{{:{{FULLPAGENAME}}/Information}}
====Developing a Model-View-Controller (MVC) Component {{JVer|1.5}}====
+
</div>
* [[Developing a Model-View-Controller Component - Part 1]]
+
<div class="large-5 columns panel radius" style="background-color:azure">
* [[Developing a Model-View-Controller Component - Part 2 - Adding a Model]]
+
{{:{{FULLPAGENAME}}/FAQs}}
* [[Developing a Model-View-Controller Component - Part 3 - Using the Database]]
+
</div>
* [[Developing a Model-View-Controller Component - Part 4 - Creating an Administrator Interface]]
+
</div><!--close the row-->
* [[Developing a Model-View-Controller Component - Part 5 - Basic Backend Framework]]
+
<div class="row panel radius">
* [[Developing a Model-View-Controller Component - Part 6 - Adding Backend Actions]]
+
{{:{{FULLPAGENAME}}/Tutorials}}
 
+
</div>
====Developing a Model-View-Controller (MVC) Component {{JVer|1.6}}====
+
<noinclude>[[Category:Development]]  
* [[Developing a Model-View-Controller (MVC) Component for Joomla!1.6|Introduction]]
+
[[Category:Component Development]]
{{Chunk:Developing a Model-View-Controller (MVC) Component for Joomla!1.6 - Contents}}
+
</noinclude>
 
 
====Other component topics====
 
* [[File Structure and Naming Conventions]]
 
* [[Component Program Flow]]. UML sequence diagrams showing the control flow for a component. {{JVer|1.5}}
 
* [[Component parameters]]
 
* [[Components:xml installfile]].  An example component XML installation file. {{JVer|1.5}}
 
* [[Manifest files]] for the installation of extensions {{JVer|1.6}}
 
* [[Supporting SEF URLs in your component]]
 
* [[Supporting plugins in your component]]
 
* [[Using JPagination in your component]]
 
* [[Adding sortable columns to a table in a component]]
 
* [[How to use the JPane classes in a component]]
 
* [[How to use the editor in a component]]
 
* [[Adding Javascript moo.fx to your component]]
 
* [[Creating a toolbar for your component]]
 
* [[Adding view layout configuration parameters]]
 
* [[How to implement XML-RPC in a component]]
 
* [[Using multiple models in an MVC component]]
 
* [[Ajax using MooTools]]
 
* [[How to create a modal form field]] {{JVer|1.6}}
 
* [[JController and its subclass usage overview]] {{JVer|1.6}}
 
* [[Managing Component Updates with Joomla!1.6 - Part 1]] {{JVer|1.6}}
 
</onlyinclude>
 
== Tutorials ==
 
<small>List of all articles belonging to the categories "Tutorials" AND "Component Development"</small>
 
<DPL>
 
noresultsheader=\n 
 
format  = ,\n* [[%PAGE%|%TITLE%]],,
 
category=Tutorials
 
category=Component Development
 
</DPL>
 
 
 
==FAQ==
 
<small>List of all articles belonging to the categories "FAQ" AND "Component Development"</small>
 
<DPL>
 
noresultsheader=\n 
 
format  = ,\n* [[%PAGE%|%TITLE%]],,
 
category=FAQ
 
category=Component Development
 
</DPL>
 

Revision as of 15:12, 8 October 2013

<translate> This page contains many links to selected documentation concerning Component Development for Joomla 2.5 and Joomla 3.x. A good place to start is with the Intro to Component Development articles below as they provide a good introductory base of knowledge to build on.</translate>

<translate> What is a Joomla! Component?</translate>

<translate>

A component is a kind of Joomla! extension. Components are the main functional units of Joomla!; they can be seen as mini-applications. An easy analogy would be that Joomla! is the operating system and the components are desktop applications. They are usually displayed in the center of the main content area of a template (depending on the template).</translate>

<translate> Most components have two main parts: an administrator part and a site part. The site part is what is used to render pages when being called during normal site operation. The administrator part provides an interface to configure and manage different aspects of the component and is accessible through the Joomla! administrator application.</translate>

<translate> Joomla! comes with a number of core components, like the content management system and contact forms.</translate>

<translate>

See also: Module, Plugin, Template</translate>



Intro to Component Development[edit]

<translate> There are many articles, tutorials, references and FAQs which focus on component development. If this is your first time developing a component for Joomla, you should start with the Absolute Basics of How a Component Functions. If needed, you can visualise the control flow of a component with these diagrams.</translate>

<translate> Next, you will want to read our  Joomla 3.x MVC tutorial    Developing a Model-View-Controller Component. Remember to familiarise yourself with Joomla! Secure coding guidelines and Development Best Practices.</translate>

<translate> Once you have read the tutorial and/or tried the example component, you can focus more on the specifics of your component with additional articles. These are listed on the Component Development Portal or any of the supporting Portals for Development(Plugins, Modules or Templates).</translate>



<translate>