J3.x

Difference between revisions of "Developing an MVC Component/Adding a view to the site part"

From Joomla! Documentation

< J3.x:Developing an MVC Component
('a' to 'an' as 'M' pronounced 'em')
(22 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{version/tutor|3.2}}
+
<noinclude><languages /></noinclude>
{{Chunk:Developing a Model-View-Controller (MVC) Component for Joomla!3.1 - Contents}}
+
{{review}}
 
+
{{:J3.1:Developing an MVC Component/<translate><!--T:6-->
== Introduction ==
+
en</translate>}}
This tutorial is part of the [[J3.2:Developing_a_MVC_Component|Developing a Model-View-Controller (MVC) Component for Joomla! 3.x]] tutorial. You are encouraged to read the previous parts of the tutorial before reading this.
+
<translate>== Introduction == <!--T:7--></translate>
 
+
<translate><!--T:8-->
In the Joomla!3.x framework, third party component authors divide their code into three main parts:
+
This tutorial is part of the [[S:MyLanguage/J3.2:Developing an MVC Component|Developing a MVC Component for Joomla! 3.2]] tutorial. You are encouraged to read the previous parts of the tutorial before reading this.</translate>
* ''models'' They manage the data  
+
<translate><!--T:9-->
* ''controllers'' They perform tasks, set and get the states of the models and ask the views to display
+
In the Joomla!3.x framework, third party component authors divide their code into three main parts:</translate>
* ''views'' They display the content according to the type (''error'', ''feed'', ''html'', ''json'', ''raw'', ''xml'') and the layout chosen by the controllers
+
<translate><!--T:10-->
 
+
* ''models'' They manage the data</translate>
== Setting the controller ==
+
<translate><!--T:11-->
In the core code of Joomla, there is a class able to manage controllers: ''[http://api.joomla.org/cms-3/classes/JControllerLegacy.html JControllerLegacy]''. This class has to be extended to be used in our component. In the file ''yoursite/components/com_helloworld/helloworld.php'' (entry point of our ''Hello World'' component), put these lines:
+
* ''controllers'' They perform tasks, set and get the states of the models and ask the views to display</translate>
 +
<translate><!--T:12-->
 +
* ''views'' They display the content according to the type (''error'', ''feed'', ''html'', ''json'', ''raw'', ''xml'') and the layout chosen by the controllers.</translate>
 +
<translate>== Setting the controller == <!--T:13--></translate>
 +
<translate><!--T:14-->
 +
In the core code of Joomla, there is a class able to manage controllers: ''[https://api.joomla.org/cms-3/classes/JControllerLegacy.html JControllerLegacy]''. This class has to be extended to be used in our component. In the file <tt>yoursite/components/com_helloworld/helloworld.php</tt> (entry point of our ''Hello World'' component), put these lines:</translate>
  
 
{{vanchor|site/helloworld.php}}
 
{{vanchor|site/helloworld.php}}
Line 17: Line 22:
 
<?php
 
<?php
 
/**
 
/**
* @package Joomla.Administrator
+
* @package     Joomla.Administrator
* @subpackage com_helloworld
+
* @subpackage com_helloworld
*
+
*
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
+
* @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
+
* @license     GNU General Public License version 2 or later; see LICENSE.txt
*/
+
*/
  
 
// No direct access to this file
 
// No direct access to this file
defined('_JEXEC') or die;
+
defined('_JEXEC') or die('Restricted access');
  
 
// Get an instance of the controller prefixed by HelloWorld
 
// Get an instance of the controller prefixed by HelloWorld
Line 36: Line 41:
 
// Redirect if set by the controller
 
// Redirect if set by the controller
 
$controller->redirect();
 
$controller->redirect();
 +
 
</source>
 
</source>
  
The ''[http://api.joomla.org/cms-3/classes/JControllerLegacy.html#method_getInstance getInstance]'' static method of the ''JControllerLegacy'' class will create a controller. In the code above, it will instantiate a controller object of a class named ''HelloWorldController''. Joomla will look for the declaration of that class in an aptly named file called ''yoursite/components/com_helloworld/controller.php'' (it's a default behavior).
+
<translate><!--T:15-->
 +
The ''[https://api.joomla.org/cms-3/classes/JControllerLegacy.html#method_getInstance getInstance]'' static method of the ''JControllerLegacy'' class will create a controller. In the code above, it will instantiate a controller object of a class named ''HelloWorldController''. Joomla will look for the declaration of that class in an aptly named file called <tt>yoursite/components/com_helloworld/controller.php</tt> (it's a default behavior).</translate>
  
Now, ''controller.php'' needs to be created and ''HelloWorldController'' needs to be declared and defined. So with your favorite file manager and editor, create a ''yoursite/components/com_helloworld/controller.php'' file containing
+
<translate><!--T:16-->
 +
Now, <tt>controller.php</tt> needs to be created and ''HelloWorldController'' needs to be declared and defined. So with your favorite file manager and editor, create a <tt>yoursite/components/com_helloworld/controller.php</tt> file containing:</translate>
  
 
{{vanchor|site/controller.php}}
 
{{vanchor|site/controller.php}}
Line 46: Line 54:
 
<?php
 
<?php
 
/**
 
/**
* @package Joomla.Administrator
+
* @package     Joomla.Administrator
* @subpackage com_helloworld
+
* @subpackage com_helloworld
*
+
*
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
+
* @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
+
* @license     GNU General Public License version 2 or later; see LICENSE.txt
*/
+
*/
 
 
 
// No direct access to this file
 
// No direct access to this file
defined('_JEXEC') or die;
+
defined('_JEXEC') or die('Restricted access');
 
 
// import Joomla controller library
 
jimport('joomla.application.component.controller');
 
 
 
 
/**
 
/**
 
  * Hello World Component Controller
 
  * Hello World Component Controller
 +
*
 +
* @since  0.0.1
 
  */
 
  */
 
class HelloWorldController extends JControllerLegacy
 
class HelloWorldController extends JControllerLegacy
Line 67: Line 72:
 
</source>
 
</source>
  
When no task is given in the request variables, the default task will be executed. It's the ''display'' task by default. The ''JControllerLegacy'' class has such a task. In our example, it will display a view named ''HelloWorld''.
+
<translate><!--T:17-->
 +
When no task is given in the request variables, the default task will be executed. It's the ''display'' task by default. The ''JControllerLegacy'' class has such a task. In our example, it will display a view named ''HelloWorld''.</translate>
  
So with ''task'' simply a public function display() of ''JControllerLegacy'' is refered to.
+
<translate><!--T:18-->
 +
So with ''task'' simply a public function display() of ''JControllerLegacy'' is refered to.</translate>
  
 
+
{{tip|<translate><!--T:19-->
{{tip|Just a side note for completion, you could call another function aside from ''display()'' by using an URL like this one:
+
Just a side note for completion, you could call another function aside from ''display()'' by using an URL like this one:</translate>
  
 
<pre>http://localhost/index.php?option=com_helloworld&task=insert</pre>
 
<pre>http://localhost/index.php?option=com_helloworld&task=insert</pre>
  
This would try to call a function ''insert()'' of our controller (which we would actually have to implement in ''HelloWorldController'' ).}}
+
<translate><!--T:20-->
 +
This would try to call a function ''insert()'' of our controller (which we would actually have to implement in ''HelloWorldController'' ).</translate>}}
  
== Setting the view ==
+
<translate>== Setting the view == <!--T:21--></translate>
 +
<translate><!--T:22-->
 +
When JControllerLegacy wants to display a view, it will look for certain files in the <tt>yoursite/components/com_[component_name]/views/[name of view]/</tt> folder.</translate>
  
When JControllerLegacy wants to display a view, it will look for certain files in the ''yoursite/components/com_[component_name]/views/[name of view]/'' folder.  
+
<translate><!--T:23-->
 +
The name of the folder of the default view is the name of the component itself. In our case the path is <tt>yoursite/components/com_helloworld/views/helloworld/</tt>.</translate>
  
The name of the folder of the default view is the name of the component itself. In our case the path is ''yoursite/components/com_helloworld/views/helloworld/''.
+
<translate><!--T:24-->
 +
The file that will contain the code of the view is called <tt>view.[view_mode].php</tt>. The default view mode, and probably the only view a component might need is the ''html'' mode. So this give us our file name which is <tt>view.html.php</tt>.</translate>
  
The file that will contain the code of the view is called ''view.[view_mode].php''. The default view mode, and probably the only view a component might need is the ''html'' mode. So this give us our file name which is ''view.html.php''.
+
<translate><!--T:25-->
 
+
With your favorite file manager and editor, '''create a file <tt>yoursite/components/com_helloworld/views/helloworld/view.html.php</tt>''' able to display the default view and containing:</translate>
With your favorite file manager and editor, create a file ''yoursite/components/com_helloworld/views/helloworld/view.html.php'' able to display the default view and containing:
 
  
 
<source lang="php">
 
<source lang="php">
 
<?php
 
<?php
 
/**
 
/**
* @package Joomla.Administrator
+
* @package     Joomla.Administrator
* @subpackage com_helloworld
+
* @subpackage com_helloworld
*
+
*
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
+
* @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
+
* @license     GNU General Public License version 2 or later; see LICENSE.txt
*/
+
*/
  
 
// No direct access to this file
 
// No direct access to this file
defined('_JEXEC') or die;
+
defined('_JEXEC') or die('Restricted access');
 
 
// import Joomla view library
 
jimport('joomla.application.component.view');
 
  
 
/**
 
/**
* HTML View class for the HelloWorld Component
+
* HTML View class for the HelloWorld Component
*
+
*
* @since 0.0.1
+
* @since 0.0.1
*/
+
*/
 
class HelloWorldViewHelloWorld extends JViewLegacy
 
class HelloWorldViewHelloWorld extends JViewLegacy
 
{
 
{
 
/**
 
/**
        * Display the Hello World view
+
* Display the Hello World view
        *
+
*
        * @param  string  $tpl  The name of the template file to parse; automatically searches through the template paths.
+
* @param  string  $tpl  The name of the template file to parse; automatically searches through the template paths.
        *
+
*
        * @return  void
+
* @return  void
        */
+
*/
public function display($tpl = null)  
+
function display($tpl = null)
 
{
 
{
 
// Assign data to the view
 
// Assign data to the view
Line 127: Line 135:
 
}
 
}
 
}
 
}
 +
 
</source>
 
</source>
  
The ''display'' method of the ''[http://api.joomla.org/cms-3/classes/JViewLegacy.html JViewLegacy]'' class is called with the ''display'' task of the JControllerLegacy class. In our case, this method will display data using the ''tmpl/default.php'' file. With your favorite file manager and editor, create a file ''yoursite/components/com_helloworld/views/helloworld/tmpl/default.php'' able to display the default view and containing:
+
<translate><!--T:26-->
 +
The ''display'' method of the ''[https://api.joomla.org/cms-3/classes/JViewLegacy.html JViewLegacy]'' class is called with the ''display'' task of the JControllerLegacy class. In our case, this method will display data using the ''tmpl/default.php'' file. With your favorite file manager and editor, create a file '''<tt>yoursite/components/com_helloworld/views/helloworld/tmpl/default.php</tt>''' able to display the default view and containing:</translate>
  
 
<source lang="php">
 
<source lang="php">
 
<?php
 
<?php
 
/**
 
/**
* @package Joomla.Administrator
+
* @package     Joomla.Administrator
* @subpackage com_helloworld
+
* @subpackage com_helloworld
*
+
*
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
+
* @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
+
* @license     GNU General Public License version 2 or later; see LICENSE.txt
*/
+
*/
  
 
// No direct access to this file
 
// No direct access to this file
defined('_JEXEC') or die;
+
defined('_JEXEC') or die('Restricted access');
 
?>
 
?>
 
<h1><?php echo $this->msg; ?></h1>
 
<h1><?php echo $this->msg; ?></h1>
 +
 
</source>
 
</source>
  
This template file will be included by the JViewLegacy class. Therefore, here, $this refers to the HelloWorldViewHelloWorld class.
+
<translate><!--T:27-->
 +
This template file will be included by the JViewLegacy class. Therefore, here, $this refers to the HelloWorldViewHelloWorld class.</translate>
  
 +
<translate><!--T:28-->
 +
So to give an example, one could call the view inside the ''yoursite/components/com_[component_name]/views/[name of view]/'' folder by calling <code>index.php?option=com_helloworld</code> (this would default to the <tt>yoursite/components/com_helloworld/views/helloworld/</tt> folder) or we could explicitly call the folder by calling:</translate>
  
So to give an example, one could call the view inside the ''yoursite/components/com_[component_name]/views/[name of view]/'' folder by calling <code>index.php?option=com_helloworld</code> (this would default to the ''yoursite/components/com_helloworld/views/helloworld/'' folder) or we could explicitly call the folder by calling: <code>index.php?option=com_helloworld&view=helloworld</code>
+
<code>index.php?option=com_helloworld&view=helloworld</code>
  
if we change <code>&view=helloworld</code> to something else, e.g. <code>&view=fluffy</code> we would have to create a folder <code>components/com_helloworld/views/fluffy/</code>.
+
<translate><!--T:29-->
 +
if we change <code>&view=helloworld</code> to something else, e.g. <code>&view=fluffy</code> we would have to create a folder <code>components/com_helloworld/views/fluffy/</code>.</translate>
  
Copy the contents of <code>views/helloworld</code> to <code>views/fluffy</code>
+
<translate><!--T:30-->
 +
Copy the contents of <code>views/helloworld</code> to <code>views/fluffy</code></translate>
  
The classname of the file <code>view.html.php</code> of the fluffy folder would be ''HelloWorldViewFluffy''. Afterwards you can customize the contents of ''default.php'' of the ''fluffy'' subfolder for custom output and see the output by calling <code>index.php?option=com_helloworld&view=fluffy</code>
+
<translate><!--T:31-->
 +
The classname of the file <code>view.html.php</code> of the fluffy folder would be ''HelloWorldViewFluffy''. Afterwards you can customize the contents of ''default.php'' of the ''fluffy'' subfolder for custom output and see the output by calling <code>index.php?option=com_helloworld&view=fluffy</code></translate>
  
== Packaging the component ==
+
<translate>== Packaging the component == <!--T:32--></translate>
 
+
<translate><!--T:33-->
Content of your code directory
+
Content of your code directory</translate>
 
* ''[[#helloworld.xml|helloworld.xml]]''
 
* ''[[#helloworld.xml|helloworld.xml]]''
 
* ''[[#site/helloworld.php|site/helloworld.php]]''
 
* ''[[#site/helloworld.php|site/helloworld.php]]''
* ''[[J3.2:Developing_a_MVC_Component/Developing_a_Basic_Component#index.html|site/index.html]]''
+
* ''[[S:MyLanguage/J3.2:Developing_an_MVC_Component/Developing_a_Basic_Component#index.html|site/index.html]]''
 
* ''[[#site/controller.php|site/controller.php]]''
 
* ''[[#site/controller.php|site/controller.php]]''
* ''[[J3.2:Developing_a_MVC_Component/Developing_a_Basic_Component#index.html|site/views/index.html]]''
+
* ''[[S:MyLanguage/J3.2:Developing_an_MVC_Component/Developing_a_Basic_Component#index.html|site/views/index.html]]''
* ''[[J3.2:Developing_a_MVC_Component/Developing_a_Basic_Component#index.html|site/views/helloworld/index.html]]''
+
* ''[[S:MyLanguage/J3.2:Developing_an_MVC_Component/Developing_a_Basic_Component#index.html|site/views/helloworld/index.html]]''
 
* ''[[#site/views/helloworld/view.html.php|site/views/helloworld/view.html.php]]''
 
* ''[[#site/views/helloworld/view.html.php|site/views/helloworld/view.html.php]]''
* ''[[J3.2:Developing_a_MVC_Component/Developing_a_Basic_Component#index.html|site/views/helloworld/tmpl/index.html]]''
+
* ''[[S:MyLanguage/J3.2:Developing_an_MVC_Component/Developing_a_Basic_Component#index.html|site/views/helloworld/tmpl/index.html]]''
 
* ''[[#site/views/helloworld/tmpl/default.php|site/views/helloworld/tmpl/default.php]]''
 
* ''[[#site/views/helloworld/tmpl/default.php|site/views/helloworld/tmpl/default.php]]''
* ''[[J3.2:Developing_a_MVC_Component/Developing_a_Basic_Component#index.html|admin/index.html]]''
+
* ''[[S:MyLanguage/J3.2:Developing_an_MVC_Component/Developing_a_Basic_Component#index.html|admin/index.html]]''
* ''[[J3.2:Developing_a_MVC_Component/Developing_a_Basic_Component#admin/helloworld.php|admin/helloworld.php]]''
+
* ''[[S:MyLanguage/J3.2:Developing_an_MVC_Component/Developing_a_Basic_Component#admin/helloworld.php|admin/helloworld.php]]''
* ''[[J3.2:Developing_a_MVC_Component/Developing_a_Basic_Component#index.html|admin/sql/index.html]]''
+
* ''[[S:MyLanguage/J3.2:Developing_an_MVC_Component/Developing_a_Basic_Component#index.html|admin/sql/index.html]]''
* ''[[J3.2:Developing_a_MVC_Component/Developing_a_Basic_Component#index.html|admin/sql/updates/index.html]]''
+
* ''[[S:MyLanguage/J3.2:Developing_an_MVC_Component/Developing_a_Basic_Component#index.html|admin/sql/updates/index.html]]''
* ''[[J3.2:Developing_a_MVC_Component/Developing_a_Basic_Component#index.html|admin/sql/updates/mysql/index.html]]''
+
* ''[[S:MyLanguage/J3.2:Developing_an_MVC_Component/Developing_a_Basic_Component#index.html|admin/sql/updates/mysql/index.html]]''
* ''[[J3.2:Developing_a_MVC_Component/Developing_a_Basic_Component#admin/sql/updates/mysql/0.0.1.sql|admin/sql/updates/mysql/0.0.1.sql]]''
+
* ''[[S:MyLanguage/J3.2:Developing_an_MVC_Component/Developing_a_Basic_Component#admin/sql/updates/mysql/0.0.1.sql|admin/sql/updates/mysql/0.0.1.sql]]''
  
Create a compressed file of this directory or directly download the [http://joomlacode.org/gf/download/frsrelease/11394/58226/com_helloworld-1.6-part02.zip archive] and install it using the extension manager of Joomla. You can test this basic component by putting ''index.php?option=com_helloworld'' in your browser address.
+
<translate><!--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-2-adding-a-site-view.zip archive] and install it using the extension manager of Joomla. You can test this basic component by putting ''index.php?option=com_helloworld'' in your browser address.</translate>
  
 
<span id="helloworld.xml">
 
<span id="helloworld.xml">
''helloworld.xml''
+
<tt>helloworld.xml</tt>
<source lang="xml">
+
<source lang="xml" highlight="13,30,31">
 
<?xml version="1.0" encoding="utf-8"?>
 
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="2.5.0" method="upgrade">
+
<extension type="component" version="3.2.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>November 2009</creationDate>
+
<creationDate>December 2013</creationDate>
 
<author>John Doe</author>
 
<author>John Doe</author>
 
<authorEmail>john.doe@example.org</authorEmail>
 
<authorEmail>john.doe@example.org</authorEmail>
Line 198: Line 216:
 
<description>Description of the Hello World component ...</description>
 
<description>Description of the Hello World component ...</description>
  
<update> <!-- Runs on update; New in 2.5 -->
+
<update> <!-- Runs on update; New since J2.5 -->
 
<schemas>
 
<schemas>
<schemapath type="mysql">sql/updates/mysql/</schemapath>
+
<schemapath type="mysql">sql/updates/mysql</schemapath>
 
</schemas>
 
</schemas>
 
</update>
 
</update>
Line 217: Line 235:
 
<administration>
 
<administration>
 
<!-- Administration Menu Section -->
 
<!-- Administration Menu Section -->
<menu>Hello World!</menu>
+
<menu link='index.php?option=com_helloworld'>Hello World!</menu>
 
<!-- Administration Main File Copy Section -->
 
<!-- Administration Main File Copy Section -->
 
<!-- Note the folder attribute: This attribute describes the folder
 
<!-- Note the folder attribute: This attribute describes the folder
Line 235: Line 253:
 
</span>
 
</span>
  
 +
<translate><!--T:35-->
 
'''Result:'''
 
'''Result:'''
You will see by default the message contained in the variable ''$this->msg'' in the ''view.html.php'' file.
+
You will see by default the message contained in the variable ''$this->msg'' in the <tt>view.html.php</tt> file.</translate>
  
{{notice|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.}}
+
{{notice|<translate><!--T:36-->
 +
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>}}
  
{{:J3.2:Developing a MVC Component/Navigate|prev=Developing a Basic Component|next=Adding a menu type to the site part}}
+
<translate>== Contributors == <!--T:2--></translate>
 
+
*[[User:Gunjanpatel|Gunjan Patel]]
<noinclude>[[Category:Component Development]] [[Category:Joomla! 3.0]] [[Category:Joomla! 3.1]][[Category:Joomla! 3.2]]</noinclude>
 
 
 
== Contributors ==
 
 
*[[User:cdemko|Christophe Demko]]
 
*[[User:cdemko|Christophe Demko]]
 
*[[User:oaksu|Ozgur Aksu]]
 
*[[User:oaksu|Ozgur Aksu]]
 +
*[[User:Scionescire|Scionescire]]
 +
 +
<div class="row">
 +
<div class="large-6 columns">{{Basic button|<translate><!--T:3-->
 +
S:MyLanguage/J3.x:Developing_an_MVC_Component/Developing_a_Basic_Component|Prev: Developing a Basic Component</translate>|class=expand success}}</div>
 +
<div class="large-6 columns">{{Basic button|<translate><!--T:4-->
 +
S:MyLanguage/J3.x:Developing_an_MVC_Component/Adding_a_menu_type_to_the_site_part|Next: Adding a menu type to the site part</translate>|class=expand}}</div>
 +
</div>
  
[[Category:Development]]
+
<noinclude>
 +
<translate>
 +
<!--T:5-->
 +
[[Category:Joomla! 3.x]]
 
[[Category:Joomla! 3.0]]
 
[[Category:Joomla! 3.0]]
 
[[Category:Joomla! 3.1]]
 
[[Category:Joomla! 3.1]]
 
[[Category:Joomla! 3.2]]
 
[[Category:Joomla! 3.2]]
 +
[[Category:Joomla! 3.3]]
 +
[[Category:Joomla! 3.4]]
 +
[[Category:Beginner Development]]
 +
[[Category:Component Development]]
 +
[[Category:Tutorials]]
 +
[[Category:Tutorials in a Series]]
 +
</translate>
 +
</noinclude>

Revision as of 09:16, 10 July 2015

Other languages:
Deutsch • ‎English • ‎Nederlands • ‎español • ‎français • ‎português do Brasil • ‎русский • ‎العربية • ‎中文(台灣)‎
Copyedit.png
This Page Needs Your Help

This page is tagged because it NEEDS REVIEW. You can help the Joomla! Documentation Wiki by contributing to it.
More pages that need help similar to this one are here. NOTE-If you feel the need is satistified, please remove this notice.


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).



Introduction[edit]

This tutorial is part of the Developing a MVC Component for Joomla! 3.2 tutorial. You are encouraged to read the previous parts of the tutorial before reading this. In the Joomla!3.x framework, third party component authors divide their code into three main parts:

  • models They manage the data
  • controllers They perform tasks, set and get the states of the models and ask the views to display
  • views They display the content according to the type (error, feed, html, json, raw, xml) and the layout chosen by the controllers.

Setting the controller[edit]

In the core code of Joomla, there is a class able to manage controllers: JControllerLegacy. This class has to be extended to be used in our component. In the file yoursite/components/com_helloworld/helloworld.php (entry point of our Hello World component), put these lines:

site/helloworld.php

<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_helloworld
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

// No direct access to this file
defined('_JEXEC') or die('Restricted access');

// Get an instance of the controller prefixed by HelloWorld
$controller = JControllerLegacy::getInstance('HelloWorld');

// Perform the Request task
$input = JFactory::getApplication()->input;
$controller->execute($input->getCmd('task'));

// Redirect if set by the controller
$controller->redirect();

The getInstance static method of the JControllerLegacy class will create a controller. In the code above, it will instantiate a controller object of a class named HelloWorldController. Joomla will look for the declaration of that class in an aptly named file called yoursite/components/com_helloworld/controller.php (it's a default behavior).

Now, controller.php needs to be created and HelloWorldController needs to be declared and defined. So with your favorite file manager and editor, create a yoursite/components/com_helloworld/controller.php file containing:

site/controller.php

<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_helloworld
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
/**
 * Hello World Component Controller
 *
 * @since  0.0.1
 */
class HelloWorldController extends JControllerLegacy
{
}

When no task is given in the request variables, the default task will be executed. It's the display task by default. The JControllerLegacy class has such a task. In our example, it will display a view named HelloWorld.

So with task simply a public function display() of JControllerLegacy is refered to.

A Tip!

Just a side note for completion, you could call another function aside from display() by using an URL like this one:

http://localhost/index.php?option=com_helloworld&task=insert
This would try to call a function insert() of our controller (which we would actually have to implement in HelloWorldController ).

Setting the view[edit]

When JControllerLegacy wants to display a view, it will look for certain files in the yoursite/components/com_[component_name]/views/[name of view]/ folder.

The name of the folder of the default view is the name of the component itself. In our case the path is yoursite/components/com_helloworld/views/helloworld/.

The file that will contain the code of the view is called view.[view_mode].php. The default view mode, and probably the only view a component might need is the html mode. So this give us our file name which is view.html.php.

With your favorite file manager and editor, create a file yoursite/components/com_helloworld/views/helloworld/view.html.php able to display the default view and containing:

<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_helloworld
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

// No direct access to this file
defined('_JEXEC') or die('Restricted access');

/**
 * HTML View class for the HelloWorld Component
 *
 * @since  0.0.1
 */
class HelloWorldViewHelloWorld extends JViewLegacy
{
	/**
	 * Display the Hello World view
	 *
	 * @param   string  $tpl  The name of the template file to parse; automatically searches through the template paths.
	 *
	 * @return  void
	 */
	function display($tpl = null)
	{
		// Assign data to the view
		$this->msg = 'Hello World';

		// Display the view
		parent::display($tpl);
	}
}

The display method of the JViewLegacy class is called with the display task of the JControllerLegacy class. In our case, this method will display data using the tmpl/default.php file. With your favorite file manager and editor, create a file yoursite/components/com_helloworld/views/helloworld/tmpl/default.php able to display the default view and containing:

<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_helloworld
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

// No direct access to this file
defined('_JEXEC') or die('Restricted access');
?>
<h1><?php echo $this->msg; ?></h1>

This template file will be included by the JViewLegacy class. Therefore, here, $this refers to the HelloWorldViewHelloWorld class.

So to give an example, one could call the view inside the yoursite/components/com_[component_name]/views/[name of view]/ folder by calling index.php?option=com_helloworld (this would default to the yoursite/components/com_helloworld/views/helloworld/ folder) or we could explicitly call the folder by calling:

index.php?option=com_helloworld&view=helloworld

if we change &view=helloworld to something else, e.g. &view=fluffy we would have to create a folder components/com_helloworld/views/fluffy/.

Copy the contents of views/helloworld to views/fluffy

The classname of the file view.html.php of the fluffy folder would be HelloWorldViewFluffy. Afterwards you can customize the contents of default.php of the fluffy subfolder for custom output and see the output by calling index.php?option=com_helloworld&view=fluffy

Packaging the component[edit]

Content of your code directory

Create a compressed file of this directory or directly download the archive and install it using the extension manager of Joomla. You can test this basic component by putting index.php?option=com_helloworld in your browser address.

helloworld.xml

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

	<name>Hello World!</name>
	<!-- The following elements are optional and free of formatting constraints -->
	<creationDate>December 2013</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.2</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>
		<filename>controller.php</filename>
		<folder>views</folder>
	</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>

Result: You will see by default the message contained in the variable $this->msg in the view.html.php file.

Info non-talk.png
General Information

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.

Contributors[edit]