News Joomla Components arrow Tutorials arrow Development tips and tricks arrow Joomla hello world MVC component Tutorial
Joomla hello world MVC component Tutorial PDF Print E-mail
Written by Sergey Romanov   
Friday, 16 March 2007

What Is MVC

Revised for Joomla 1.5 beta 2

Model-view-controller (MVC) is an architectural pattern used in software engineering. In complex computer applications that present lots of data to the user, one often wishes to separate data (model) and user interface (view) concerns, so that changes to the user interface do not impact the data handling, and that the data can be reorganized without changing the user interface. The model-view-controller solves this problem by decoupling data access and business logic from data presentation and user interaction, by introducing an intermediate component: the controller. It is common to split an application into separate layers: presentation (UI), domain, and data access. In MVC the presentation layer is further separated into view and controller. MVC encompasses more of the architecture of an application than is typical for a design pattern.

Model The domain-specific representation of the information on which the application operates. In Joomla it is MySQL database tables. Joomla model classes basically contains table schemes. Formerly known as mosTable.

View Renders the model into a form suitable for interaction, typically a user interface element. In Joomla it is set of View class and 1 or more templates.

Controller Processes and responds to events, typically user actions, and may invoke changes on the model. In Joomla process tasks. to trigger tasks, Every thing you need is to create methods in controller class with the same name as a task.

Joomla MVC Works as follows

  1. User access Component (without any task or controller variables)
  2. Default Controller Class constructed. Then controller call default view and displayed. Of course this controller render default view.
  3. User click on any control. The control should have task and controller variables in URL, or only task. (E.g. index.php?option=com_mvc&controller=books&task=view)
  4. If controller passed Joomla looks for new controller file and construct it. Then Render according the task.

Where is the Model? Model is used inside controllers' task functions. If it is for example Publish task, function publish will launch appropriate model to change published field.

File structure explanation

  • Component
    • Controllers
      • Controller1.php
      • Controller2.php
    • Views
      • View1
        • Tmpl
          • View1.php
          • View2.php
        • View.html.php
      • View2
        • Tmpl
          • View1.php
          • View2.php
        • View.html.php
    • Models
      • Model1.php
      • Model2.php
    • Admin.component.php
    • Controller.php

Controller folder contains controller classes. Foe example for Book Library, Book Category controller, Book controller, Book Publisher controller and so on.

Models contain Model classes. One Model class is equal to one DB table.

View folder contains view classes and templates. Every view class may have few templates that are stored in tmpl folder. Every view class has the same name view.html.php. And tmpl folder contains html template files. Admin.component.php is a component launch file and controller.php is default controller. Let's create most simple MVC Component.

We will create component called mvc.

The component we will create can be downloaded here.
  1. Create folder administrator/components/com_mvc.
  2. Create file administrator/components/com_mvc/admin.mvc.php. This is standard Joomla file that will be launched on access to the component.

    <?php 
    defined( '_JEXEC' ) or die( 'Restricted access' );
    
    require_once (JPATH_COMPONENT.DS.'controller.php');
    
    if($controller = JRequest::getVar('controller')) {
      require_once (JPATH_COMPONENT.DS.'controllers'.
        DS.$controller.'.php');
    }
    
    $classname	= 'MvcController'.ucfirst($controller);
    $controller	= new $classname( );
    
    $controller->execute( JRequest::getVar('task'));
    $controller->redirect();
    ?>

    Line 2 is to protect document from direct access. line 4 to require default controller. This controller will render pages if controller GET/POST variable is not set. 6-8 to include other controller class if controller GET/POST variable was set. 10-11 create new controller class. 13-14 execute controller or render page according task

    This file is quite simple. First it includes controller, then create class, then execute.

  3. Create administrator/components/com_mvc/controller.php. This is controller we includes in line 4 of admin.mvc.php. This controller will be launched if there was not any GET/POST controller variable found.

    <?php
    jimport('joomla.application.component.controller');
    
    class MvcController extends JController
    {
        function display() {
            parent::display();
        }
    }
    ?>
    

    2d line to include Joomla API controller class for extending new one created in line 4. Function display render default view. More about that later.

    Basically that is all we need. If instead parent::display(); we put echo "test this"; we will see this on the main page of the component. But let's create fully structured MVC component. For that we need to create View for this controller.

    Default view should have the same name as the component.

  4. Create folder administrator/components/com_mvc/views.
  5. Create folder administrator/components/com_mvc/views/mvc. To create default view we need to name this folder as we named component.
  6. Create file administrator/components/com_mvc/view/mvc/view.html.php. This file will have view class. We do not use "mvc" word in the name of this file. Every view class has different folder but the same file name. it is view.html.php

    <?php
    jimport( 'joomla.application.component.view');
    class MvcViewMvc extends JView
    {
        function display($tpl = null)
        {
            JToolBarHelper::title(JText::_( 'MVC Main' ), 'generic.png');
            parent::display($tpl);
        }
    }
    ?>

    Line 2 we include Joomla API View class to extend new one we create in line 3. 5-10 create function display(). This function is called by default, by MvcController class if not task called.

    I used JToolBarHelper::title() to display tile. Here you can also use other JToolBarHelper methods. Also here you can make DB queries and prepare HTML elements to render such as Published Yes/No radio button set, Public/Registered/Special access select list, pageNav class to create navigation and other. Please, note the difference. In this view class we use Models(tables) and SQL queries to get information to create HTML elements to render. But in controller we make SQL queries and use models to control and operate records. Something like delete, publish, save, ...

    Function display() will be called by default if there is no GET/POST task variable set. parent::display($tpl); will call default template if POST/GET layout variable is not set. So let's create default template.

  7. Create file administrator/components/com_mvc/view/mvc/tmpl/default.php.
    <h1>MVC Main</h1>
    <a href="http://www.joomlaequipment.com/component/option,com_mvc/controller,list/">List something</a>

    This is HTML document. This template will display H1 header and link to other controller. This is complete MVC minimum component. We only lack Models.

    Please, save all files and try to call your new component. Login to Joomla admin and put to address line /index.php?option=com_mvc. Before you continue please, be sure all code works fine till this point.

    Everything you will read below just to explain some more things. How to control different tasks and different Views within one Controller. For that, let's create another section that will be controlled by Controller list. First link to controller is without task so we will call default View again and create some more links with tasks to call other Views.

  8. Lets imagine we clicked on index.php?option=com_mvc&controller=list link. That means we enable following lines in admin.mvc.php.
    if($controller = JRequest::getVar('controller')) {
      require_once (JPATH_COMPONENT.DS.'controllers'.
        DS.$controller.'.php');
    }

    That means we need to create file administrator/components/com_mvc/controllers/list.php.

  9. Create it.

    <?php
    jimport('joomla.application.component.controller');
    
    class MvcControllerList extends JController
    {
      function __construct()
    	{
    		parent::__construct();
    	}
      function display() {
    		JRequest::setVar('view', 'list');
        parent::display();
    	}
    }
    ?>

    JRequest::setVar('view', 'list'); tells this controller to look for View in views/list folder. If we skip or delete this line, this controller class will look for View in views/mvc default folder. So if we told controller to look for View in list folder, let's create it.

  10. Create folder administrator/components/com_mvc/view/list
  11. Create folder administrator/components/com_mvc/view/list/tmpl
  12. Create file administrator/components/com_mvc/view/list/view.html.php
    <?php
    jimport( 'joomla.application.component.view');
    class MvcViewList extends JView
    {
    	function display($tpl = null)
      {
         JToolBarHelper::title(JText::_( 'List' ), 'generic.png' );
         parent::display($tpl);
      }
    }
    ?>

    I won't explain this file. It is the same as views/mvc/view.html.php, only name of the class is different.

  13. Create file administrator/components/com_mvc/view/list/tmpl/default.php
    <h1>This is Default.php</h1>
    <P>This file launch automatically is nothing 
    passed to JRequest::setVar('layout', 'something');</P>
    <a href="http://www.joomlaequipment.com/component/option,com_mvc/controller,list/task,test/">
        test</a><BR>
    <a href="http://www.joomlaequipment.com/component/option,com_mvc/controller,list/task,new_task/">
        new_task</a><BR>
  14. That is it. It should work ok now. I mean you can easily navigate from MVC component homepage to list controller homepage.

    But this file will display few links that have different tasks within same Controller. Here is how you can handle them. Start with task=new_task.

  15. Create function new_task in File controllers/list.php.

    <?php
    jimport('joomla.application.component.controller');
    class MvcControllerList extends JController
    {
      function __construct()
      {
        parent::__construct();
      }
      function display() {
        JRequest::setVar('view', 'list');
        parent::display();
      }
      function new_task()
      {
        JRequest::setVar('view',  'list');
        JRequest::setVar('layout','newtask');
        parent::display();
      }
    }
    ?>

    We created function new_task() in line 13-18, that will be called if GET/POST task variable equal to new_task. JRequest::setVar('view', 'list'); tells controller to look for View in views/list/ folder. JRequest::setVar('layout','newtask'); tells controller that View should display newtask template or really newtask.php. Let's create it.

  16. Create file administrator/components/com_mvc/view/list/tmpl/newtask.php
    <h1>This is new task</h1>
    <P>This task1, task2, new_task triger the same function </P>
    <a href="http://www.joomlaequipment.com/component/option,com_mvc/controller,list/">Go back</a>

    This file displays some text and link back to list controller homepage. Save all files and try it. Try to navigate to list controller homepage and click on new_task link. If you see text of above listing you are done. Congratulation. You have just created new task.

  17. One more thins to know. It is possible to call same method with different tasks. For that add $this->registerTask( 'test' , 'new_task' ); to construct method of controllers/list.php.

    <?php
    jimport('joomla.application.component.controller');
    
    class MvcControllerList extends JController
    {
      function __construct()
      {
        parent::__construct();
        
        $this->registerTask( 'test'  , 'new_task' );
      }
      function display() {
        JRequest::setVar('view', 'list');
        parent::display();
      }
      function new_task()
      {
        JRequest::setVar('view',  'list');
        JRequest::setVar('layout','newtask');
        parent::display();
      }
    }
    ?>
    Save all files and now try click test link on list controller homepage.
  18. Later I'll write a lesson on how to use Models and we will create simple guestbook component.
Comments (7)Add Comment
test comments
written by Sergey, June 17, 2007
Comments did not work for long time and I thought that no one is interested in it that is way I did not write tutorial on how to create models and so on.
Keep the tutorials coming
written by Tom Fuller, June 29, 2007
Sergey:

we who are new to programming for Joomla 1.5 need great tutorials like yours. I am trying to create a Message Management System for my church.

I have Hagen Graf's book Joomla 1.5 Beta - and ran into a fatal error using a call to JcommonHTML. I noticed a thread in a discussion of your mvc component about it, but can't find out if something has changed.

I already changed JMenuBar to JToolBarHelper in the code of mvc that made it work.

Was there a change to the way the JCommonHTML worked or a change to the name that you know of?

Thanks!

tom
Great Help!
written by Duke, July 06, 2007
Hi!
I just want to thank you for this nice tutorial! It helped me alot understanding the joomla-api and how to get started! Keep on writing more tutorials like this!

Greetings,
Duke
Keep getting logged out
written by Charlotte, July 10, 2007
I tried to go through this guide, but after step 7 when I try to call my component I keep getting logged out. I haven't changed anything in the code and the folder structure is the same as the example. smilies/cry.gif
Thank you!
written by sashakk, July 24, 2007
Thx so much for your tutorial. Im waiting for your new ones.
Thank you for evaluation
written by Sergey Romanov2, August 31, 2007
Very appreciate that.
Common opinion
written by Jaliyah, January 26, 2010
You seem to be a great specialist in this sphere. At least what you write surely deserves attention. I'd like you to have a look at my creation rapidshare SE for( http://www.rapidsharemix.com ) and say what you really think about it. Thanks!

Write comment
quote
bold
italicize
underline
strike
url
image
quote
quote
Smiley
Smiley
Smiley
Smiley
Smiley
Smiley
Smiley
Smiley
Smiley
Smiley
Smiley
Smiley

busy
Last Updated ( Wednesday, 18 July 2007 )
 
Next >