Portal

Difference between revisions of "Component Development"

From Joomla! Documentation

m (Removed contents lists for MVC articles. Now replaced by disambiguation page.)
(25 intermediate revisions by 3 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 Component]] {{JVer|1.5}} {{JVer|2.5}}
+
</div>
* [[File Structure and Naming Conventions]]
+
<div class="large-5 columns panel radius" style="background-color:azure">
* [[Component Program Flow]]. UML sequence diagrams showing the control flow for a component. {{JVer|1.5}}
+
{{:{{FULLPAGENAME}}/FAQs}}
* [[Component parameters]]
+
</div>
* [[Components:xml installfile]].  An example component XML installation file. {{JVer|1.5}}
+
</div><!--close the row-->
* [[Manifest files]] for the installation of extensions {{JVer|1.6}}
+
<div class="row panel radius">
* [[Supporting SEF URLs in your component]]
+
{{:{{FULLPAGENAME}}/Tutorials}}
* [[Supporting plugins in your component]]
+
</div>
* [[Using JPagination in your component]]
+
<noinclude>[[Category:Development]]  
* [[Adding sortable columns to a table in a component]]
+
[[Category:Component Development]]
* [[Using the JPane classes in a component]] {{JVer|1.5}}
+
</noinclude>
* [[Using the JHtmlTabs class in a component]]
 
* [[Using the editor in a component]]
 
* [[Adding AJAX to your component]]
 
* [[Ajax using MooTools]]
 
* [[How to add breadcrumbs]]
 
* [[Sending email from extensions]]
 
* [[Using the JToolBar class in the frontend]]
 
* [[Creating a toolbar for your component]]
 
* [[Creating a file uploader in your component]]
 
* [[Adding Javascript moo.fx to your component]]
 
* [[Adding view layout configuration parameters]]
 
* [[Using a custom image in the menu bar title]]
 
* [[How to implement XML-RPC in a component]]
 
* [[Using multiple models in an MVC component]]
 
* [[Adding ACL rules to your component]] {{JVer|1.7}}
 
* [[How to create a modal form field in 1.6/1.7]] {{JVer|1.6}} {{JVer|1.7}}
 
* [[JController and its subclass usage overview]] {{JVer|1.6}} {{JVer|1.7}}
 
* [[Managing Component Updates with Joomla!1.6 - Part 1]] {{JVer|1.6}} {{JVer|1.7}} {{JVer|2.5}}
 
* [[Xml-rpc changes in Joomla! 1.6]] {{JVer|1.6}}
 
* [[How to create PDF views]]{{JVer|2.5}}
 
* [[Components:jform fields]]. and their usage {{JVer|2.5}}
 
</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>