J3.x

Developing an MVC Component/Developing a Basic Component: Difference between revisions

From Joomla! Documentation

FuzzyBot (talk | contribs)
m FuzzyBot moved page J3.x:Developing a MVC Component/Developing a Basic Component to J3.x:Developing an MVC Component/Developing a Basic Component without leaving a redirect: Part of translatable page "J3.x:Developing a MVC Component".
Stan31337 (talk | contribs)
mNo edit summary
 
(43 intermediate revisions by 7 users not shown)
Line 1: Line 1:
<noinclude><languages /></noinclude>
<noinclude><languages /></noinclude>
{{:J3.1:Developing a MVC Component/<translate><!--T:1-->
{{:J3.1:Developing an MVC Component/<translate><!--T:1-->
en</translate>}}
en</translate>}}
<translate>== The first basic component == <!--T:3-->
<translate>
Let's create a ''Hello World!'' component.</translate>
== Notes == <!--T:21-->
<translate>=== Public display === <!--T:4-->
This tutorial is part of the [[S:MyLanguage/J3.x:Developing_an_MVC_Component/Introduction|Developing a MVC Component for Joomla! 3.x]] tutorial. You are encouraged to read the previous parts of the tutorial before reading this.
With your favorite file manager and editor, create a file <tt>''yoursite/components/com_helloworld/helloworld.php''</tt> containing:</translate>


<source lang="php">
<!--T:22-->
Hello world
If you have used Joomla! before reading this tutorial, you have noticed that extensions are installed using a compressed file containing all the things which are needed for installing and uninstalling them.
</source>
 
<!--T:23-->
You can follow the steps below to create the Hello World! component, or you can directly download files from the git repository [https://github.com/Stevec4/Joomla-HelloWorld/raw/master/01%20Introduction/helloworld.zip archive]
 
<!--T:24-->
Here are some slides based on this documents to explain how to create basic to advance Joomla! components.<br />
[http://bit.ly/joomlaWorkshopBasic Joomla! Basic Component Help]<br />
[http://bit.ly/joomlaWorkshopAdvance Joomla! Advance Component Help]<br />
 
<!--T:55-->
There are also a number of videos which accompany steps in the tutorial, beginning with<br />
[https://www.youtube.com/watch?v=4JDsdfnlOhE Step 1, Developing a Basic Component] and you can access the slides which are used in the series of video presentations at [https://docs.google.com/presentation/d/11g6qd64zmQObe8xMuEVubdUeIp0DcZ1wr8dq7LcrXIA Slides].
 
<!--T:57-->
'''Important! Around version 3.8 the Joomla developers started changing the naming of Joomla classes and where they were stored in the directory structure. Many of the tutorial steps and videos refer to the old naming convention. To find the equivalent new class and where it's stored, look in your libraries/classmap.php file.'''
 
<!--T:56-->
{{#widget:YouTube|id=4JDsdfnlOhE}}
 
== How to add a component to Joomla! == <!--T:25-->
In this article we will cover how to create and install a basic Joomla! component. For this example we will be working with the Hello World! component.


<translate><!--T:5-->
<!--T:26-->
Also Create an empty file <tt>''yoursite/components/com_helloworld/helloworld.xml''</tt></translate>
To begin, you must first use your preferred file manager to create a directory for the Hello World! component. This directory can be anywhere on your file system, as long as it is outside of your Joomla! installation directory. For this example we will name the directory <tt>com_helloworld</tt>, but this directory can be named anything.


<translate><!--T:6-->
<!--T:27-->
The last step is install the component, go to Extensions {{rarr}} Extension Manager {{rarr}} Discover :: Discover (Button).
Next, inside this directory we need to create some files. Using your preferred file manager, create the following files; as you create the files, add the source code for each file which is found in ''[[#File Details| File Details]]''.</translate>
Select the component and install it with the installation (button).</translate>


<translate><!--T:7-->
<!--T:28-->
You can test this basic component by putting ''index.php?option=com_helloworld'' in your browser address (don't forget to prefix this address with your Joomla! 3.x installation path) after installing this component.</translate>
{| border=1
| 1
| ''[[#helloworld.xml|helloworld.xml]]''
| <translate><!--T:35-->
this is an XML (manifest) file that tells Joomla! how to install our component.</translate>
|-
| 2
| ''[[#site/helloworld.php|site/helloworld.php]]''
| <translate><!--T:36-->
this is the site entry point to the Hello World! component</translate>
|-
| 3
| ''[[#index.html|site/index.html]]''
| <translate><!--T:37-->
prevents web server from listing directory content</translate>
|-
| 4
| ''[[#index.html|admin/index.html]]''
| <translate><!--T:38-->
prevents web server from listing directory content</translate>
|-
| 5
| ''[[#admin/helloworld.php|admin/helloworld.php]]''
| <translate><!--T:39-->
this is the administrator entry point to the Hello World! component</translate>
|-
| 6
| ''[[#index.html|admin/sql/index.html]]''
| <translate><!--T:40-->
prevents web server from listing directory content</translate>
|-
| 7
| ''[[#index.html|admin/sql/updates/index.html]]''
| <translate><!--T:54-->
prevents web server from listing directory content</translate>
|-
| 8
| ''[[#index.html|admin/sql/updates/mysql/index.html]]''
| <translate><!--T:41-->
prevents web server from listing directory content</translate>
|-
| 9
| ''[[#admin/sql/updates/mysql/0.0.1.sql|admin/sql/updates/mysql/0.0.1.sql]]''
| <translate><!--T:42-->
file allowing to initialise schema version of the com_helloworld component.</translate>
|}


<translate>=== Administrator management === <!--T:8--></translate>
<translate>
<translate><!--T:9-->
=== Installing the Hello World! Component === <!--T:29-->
With your favorite file manager and editor, create a file <tt>''yoursite/administrator/components/com_helloworld/helloworld.php''</tt> containing:</translate>
Using your preferred file manager, create a .zip file of this directory. For this example we will name the file <tt>com_helloworld.zip</tt>, again this file could have been named anything.


<source lang="php">
<!--T:30-->
Hello world administration
Now we need to install the Hello World! component. There are two ways to do this, both are covered in [[S:MyLanguage/Installing an extension|Installing an Extension]]. Here we will cover the method using the Extension Manager of Joomla!.
</source>


<translate><!--T:10-->
<!--T:31-->
You can test this basic component by putting
*Using your preferred web browser, navigate to the Administrator panel of your Joomla! site. The address would be <tt><yoursite>/joomla/administrator/index.php</tt>. For this example we will navigate to <tt>localhost/joomla/administrator/index.php</tt>.
<tt>'''administrator/index.php?option=com_helloworld'''</tt> in your browser address after installing the component.</translate>
*Click Extensions {{rarr}} Manage {{rarr}} Install {{rarr}} Upload Package File {{rarr}} Choose File
*Navigate and Select File
*Click Upload & Install


<translate>=== Pack an installation zip file === <!--T:11--></translate>
<!--T:32-->
<translate><!--T:12-->
Note - You should see a message letting you know if the installation succeeded or failed.  
If you have used Joomla! before reading this tutorial, you have noticed that extensions are installed using a compressed file containing all the things which are needed for installing and uninstalling them.</translate>


<translate><!--T:13-->
<!--T:33-->
With your favorite file manager, create a directory (outside your Joomla! installation directory) containing:</translate>
You can test this basic function of the component by entering the Hello World! page for the site and administrator portions of your Joomla! website.
* ''[[#helloworld.xml|helloworld.xml]]''
* Using your preferred web browser, navigate to the Hello World! component page located on the site portion of your website. The address would be <tt><yoursite>/joomla/index.php?option=com_helloworld</tt>. For this example we will navigate to <tt>localhost/joomla/index.php?option=com_helloworld</tt>.
* ''[[#site/helloworld.php|site/helloworld.php]]''
* Using your preferred web browser, navigate to the Hello World! component page located on the administrator portion of your website. The address would be <tt><yoursite>/joomla/administrator/index.php?option=com_helloworld</tt>. For this example we will navigate to <tt>localhost/joomla/administrator/index.php?option=com_helloworld</tt>.
* ''[[#index.html|site/index.html]]''
* ''[[#index.html|admin/index.html]]''
* ''[[#admin/helloworld.php|admin/helloworld.php]]''
* ''[[#index.html|admin/sql/index.html]]''
* ''[[#index.html|admin/sql/updates/index.html]]''
* ''[[#index.html|admin/sql/updates/mysql/index.html]]''
* ''[[#admin/sql/updates/mysql/0.0.1.sql|admin/sql/updates/mysql/0.0.1.sql]]''


<translate><!--T:14-->
<!--T:34-->
Create a compressed file of this directory or directly download the [https://github.com/scionescire/Joomla-3.2-Hello-World-Component/archive/step-1-basic-component.zip archive] and install it using the extension manager of Joomla. You can test this basic component by putting ''index.php?option=com_helloworld'' or ''administrator/index.php?option=com_helloworld'' in your browser address. You can also notice that the ''Hello World!'' component is visible in the administrator site of your Joomla installation under the ''Components'' menu.</translate>
You can also notice that the ''Hello World!'' component is visible in the administrator site of your Joomla installation under the ''Components'' menu.


<translate>==File Details== <!--T:15--></translate>
==File Details== <!--T:15-->
</translate>
{{vanchor|admin/sql/updates/mysql/0.0.1.sql}}
{{vanchor|admin/sql/updates/mysql/0.0.1.sql}}
<translate><!--T:16-->
<translate><!--T:16-->
Line 64: Line 121:
<source lang="xml">
<source lang="xml">
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="3.2.0" method="upgrade">
<extension type="component" version="3.0" method="upgrade">


<name>Hello World!</name>
<name>Hello World!</name>
<!-- The following elements are optional and free of formatting constraints -->
<!-- The following elements are optional and free of formatting constraints -->
<creationDate>December 2013</creationDate>
<creationDate>January 2018</creationDate>
<author>John Doe</author>
<author>John Doe</author>
<authorEmail>john.doe@example.org</authorEmail>
<authorEmail>john.doe@example.org</authorEmail>
Line 133: Line 190:
<html><body bgcolor="#FFFFFF"></body></html>
<html><body bgcolor="#FFFFFF"></body></html>
</source>
</source>
<br />
 
<translate>
 
==Component Contents== <!--T:43-->
</translate>
<translate><!--T:44-->
At this point in the tutorial, your component should contain the following files:</translate>
{| border=1
| 1
| ''[[#helloworld.xml|helloworld.xml]]''
| <translate><!--T:45-->
this is an XML (manifest) file that tells Joomla! how to install our component.</translate>
|-
| 2
| ''[[#site/helloworld.php|site/helloworld.php]]''
| <translate><!--T:46-->
this is the site entry point to the Hello World! component</translate>
|-
| 3
| ''[[#index.html|site/index.html]]''
| <translate><!--T:47-->
prevents web server from listing directory content</translate>
|-
| 4
| ''[[#index.html|admin/index.html]]''
| <translate><!--T:48-->
prevents web server from listing directory content</translate>
|-
| 5
| ''[[#admin/helloworld.php|admin/helloworld.php]]''
| <translate><!--T:49-->
this is the administrator entry point to the Hello World! component</translate>
|-
| 6
| ''[[#index.html|admin/sql/index.html]]''
| <translate><!--T:50-->
prevents web server from listing directory content</translate>
|-
| 7
| ''[[#index.html|admin/sql/updates/index.html]]''
| <translate><!--T:51-->
prevents web server from listing directory content</translate>
|-
| 8
| ''[[#index.html|admin/sql/updates/mysql/index.html]]''
| <translate><!--T:52-->
prevents web server from listing directory content</translate>
|-
| 9
| ''[[#admin/sql/updates/mysql/0.0.1.sql|admin/sql/updates/mysql/0.0.1.sql]]''
| <translate><!--T:53-->
file allowing to initialise schema version of the com_helloworld component.</translate>
|}
 
{{notice|<translate><!--T:18-->
{{notice|<translate><!--T:18-->
Please create a pull request or issue at https://github.com/joomla/Joomla-3.2-Hello-World-Component for any code descprepancies or if editing any of the source code on this page.</translate>}}
An updated git repository following along this tutorial is available @ https://github.com/Stevec4/Joomla-HelloWorld for any code descprepancies or edits please make a pull request.</translate>}}


<div class="row">  
<div class="row">  
<div class="large-6 columns">{{Basic button|<translate><!--T:19-->
<div class="large-6 columns">{{Basic button|<translate><!--T:19-->
S:MyLanguage/J3.x:Developing_a_MVC_Component/Introduction|Prev: Introduction</translate>|class=expand success}}</div>
S:MyLanguage/J3.x:Developing_an_MVC_Component/Introduction|Prev: Introduction</translate>|class=expand success}}</div>
<div class="large-6 columns">{{Basic button|<translate><!--T:20-->
<div class="large-6 columns">{{Basic button|<translate><!--T:20-->
S:MyLanguage/J3.x:Developing_a_MVC_Component/Adding_a_view_to_the_site_part|Next: Adding a view to the site part</translate>|class=expand}}</div>
S:MyLanguage/J3.x:Developing_an_MVC_Component/Adding_a_view_to_the_site_part|Next: Adding a view to the site part</translate>|class=expand}}</div>
</div>
</div>
 
__NOTOC__
<noinclude>
<noinclude>
<translate>
<translate>

Latest revision as of 06:25, 22 January 2019

Joomla! 
3.x
Tutorial
Developing an MVC Component



This is a multiple-article series of tutorials on how to develop a Model-View-Controller Component for Joomla! VersionJoomla 3.x.

Begin with the Introduction, and navigate the articles in this series by using the navigation button at the bottom or the box to the right (the Articles in this series).



Notes

This tutorial is part of the Developing a MVC Component for Joomla! 3.x tutorial. You are encouraged to read the previous parts of the tutorial before reading this.

If you have used Joomla! before reading this tutorial, you have noticed that extensions are installed using a compressed file containing all the things which are needed for installing and uninstalling them.

You can follow the steps below to create the Hello World! component, or you can directly download files from the git repository archive

Here are some slides based on this documents to explain how to create basic to advance Joomla! components.
Joomla! Basic Component Help
Joomla! Advance Component Help

There are also a number of videos which accompany steps in the tutorial, beginning with
Step 1, Developing a Basic Component and you can access the slides which are used in the series of video presentations at Slides.

Important! Around version 3.8 the Joomla developers started changing the naming of Joomla classes and where they were stored in the directory structure. Many of the tutorial steps and videos refer to the old naming convention. To find the equivalent new class and where it's stored, look in your libraries/classmap.php file.

How to add a component to Joomla!

In this article we will cover how to create and install a basic Joomla! component. For this example we will be working with the Hello World! component.

To begin, you must first use your preferred file manager to create a directory for the Hello World! component. This directory can be anywhere on your file system, as long as it is outside of your Joomla! installation directory. For this example we will name the directory com_helloworld, but this directory can be named anything.

Next, inside this directory we need to create some files. Using your preferred file manager, create the following files; as you create the files, add the source code for each file which is found in File Details.

1 helloworld.xml this is an XML (manifest) file that tells Joomla! how to install our component.
2 site/helloworld.php this is the site entry point to the Hello World! component
3 site/index.html prevents web server from listing directory content
4 admin/index.html prevents web server from listing directory content
5 admin/helloworld.php this is the administrator entry point to the Hello World! component
6 admin/sql/index.html prevents web server from listing directory content
7 admin/sql/updates/index.html prevents web server from listing directory content
8 admin/sql/updates/mysql/index.html prevents web server from listing directory content
9 admin/sql/updates/mysql/0.0.1.sql file allowing to initialise schema version of the com_helloworld component.

Installing the Hello World! Component

Using your preferred file manager, create a .zip file of this directory. For this example we will name the file com_helloworld.zip, again this file could have been named anything.

Now we need to install the Hello World! component. There are two ways to do this, both are covered in Installing an Extension. Here we will cover the method using the Extension Manager of Joomla!.

  • Using your preferred web browser, navigate to the Administrator panel of your Joomla! site. The address would be <yoursite>/joomla/administrator/index.php. For this example we will navigate to localhost/joomla/administrator/index.php.
  • Click Extensions    Manage    Install    Upload Package File    Choose File
  • Navigate and Select File
  • Click Upload & Install

Note - You should see a message letting you know if the installation succeeded or failed.

You can test this basic function of the component by entering the Hello World! page for the site and administrator portions of your Joomla! website.

  • Using your preferred web browser, navigate to the Hello World! component page located on the site portion of your website. The address would be <yoursite>/joomla/index.php?option=com_helloworld. For this example we will navigate to localhost/joomla/index.php?option=com_helloworld.
  • Using your preferred web browser, navigate to the Hello World! component page located on the administrator portion of your website. The address would be <yoursite>/joomla/administrator/index.php?option=com_helloworld. For this example we will navigate to localhost/joomla/administrator/index.php?option=com_helloworld.

You can also notice that the Hello World! component is visible in the administrator site of your Joomla installation under the Components menu.

File Details

admin/sql/updates/mysql/0.0.1.sql is an empty file allowing to initialise schema version of the com_helloworld component.

helloworld.xml

<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="3.0" method="upgrade">

	<name>Hello World!</name>
	<!-- The following elements are optional and free of formatting constraints -->
	<creationDate>January 2018</creationDate>
	<author>John Doe</author>
	<authorEmail>john.doe@example.org</authorEmail>
	<authorUrl>http://www.example.org</authorUrl>
	<copyright>Copyright Info</copyright>
	<license>License Info</license>
	<!--  The version string is recorded in the components table -->
	<version>0.0.1</version>
	<!-- The description is optional and defaults to the name -->
	<description>Description of the Hello World component ...</description>

	<update> <!-- Runs on update; New since J2.5 -->
		<schemas>
			<schemapath type="mysql">sql/updates/mysql</schemapath>
		</schemas>
	</update>

	<!-- Site Main File Copy Section -->
	<!-- Note the folder attribute: This attribute describes the folder
		to copy FROM in the package to install therefore files copied
		in this section are copied from /site/ in the package -->
	<files folder="site">
		<filename>index.html</filename>
		<filename>helloworld.php</filename>
	</files>

	<administration>
		<!-- Administration Menu Section -->
		<menu link='index.php?option=com_helloworld'>Hello World!</menu>
		<!-- Administration Main File Copy Section -->
		<!-- Note the folder attribute: This attribute describes the folder
			to copy FROM in the package to install therefore files copied
			in this section are copied from /admin/ in the package -->
		<files folder="admin">
			<!-- Admin Main File Copy Section -->
			<filename>index.html</filename>
			<filename>helloworld.php</filename>
			<!-- SQL files section -->
			<folder>sql</folder>
		</files>
	</administration>

</extension>

site/helloworld.php

Hello World

admin/helloworld.php

Hello World administration

index.html

common to all folders

<html><body bgcolor="#FFFFFF"></body></html>


Component Contents

At this point in the tutorial, your component should contain the following files:

1 helloworld.xml this is an XML (manifest) file that tells Joomla! how to install our component.
2 site/helloworld.php this is the site entry point to the Hello World! component
3 site/index.html prevents web server from listing directory content
4 admin/index.html prevents web server from listing directory content
5 admin/helloworld.php this is the administrator entry point to the Hello World! component
6 admin/sql/index.html prevents web server from listing directory content
7 admin/sql/updates/index.html prevents web server from listing directory content
8 admin/sql/updates/mysql/index.html prevents web server from listing directory content
9 admin/sql/updates/mysql/0.0.1.sql file allowing to initialise schema version of the com_helloworld component.
General Information

An updated git repository following along this tutorial is available @ https://github.com/Stevec4/Joomla-HelloWorld for any code descprepancies or edits please make a pull request.