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.
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.
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.
File listing: admin.mvc.php
<?php require_once (JPATH_COMPONENT.DS.'controller.php'); if($controller = JRequest::getVar('controller')) { require_once (JPATH_COMPONENT.DS.'controllers'. DS.$controller.'.php'); } $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.
File listing: controller.php
<?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.
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
File listing: views/mvc/view.html.php
<?php jimport( 'joomla.application.component.view'); class MvcViewMvc extends JView { function display($tpl = null) { 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.
File listing: views/mvc/tmpl/default.php
<h1>MVC Main</h1>;
<a href="index.php?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.
File listing: views/mvc/tmpl/default.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.
File listing: 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(); } } ?>
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.
File listing: views/list/view.html.php
<?php jimport( 'joomla.application.component.view'); class MvcViewList extends JView { function display($tpl = null) { 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.
File listing: views/list/tmpl/default.php
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.
File listing after adding function: 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.
File listing: views/list/tmpl/newtask.php
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.
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.
Final listing: controllers/list.php
Save all files and now try click test link on list controller homepage.
<?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(); } } ?>