Bazele Fundamentale ale Funcționării unei Componente
From Joomla! Documentation
Acest articol este destinat începătorilor Joomla!; scopul său este de a explica ce este o componentă Joomla! și cum funcționează. În momentul în care un exemplu specific de componentă va fi prezentat în tutorial, acest articol se va referi la componenta exemplu numită Hello World!.
Ce este o Componentă Joomlaǃ
Chunk:Component/ro În framework-ul Joomla!, componentele pot fi create folosind un model plat (returnează cod HTML pentru pagina solicitată) sau o structură Model-View-Controller (la care ne vom referi folosind MVC).
Introducere în MVC
MVC is a software design pattern that can be used to organize code in such a way that the business logic and data presentation are separate. The premise behind this approach is that if the business logic is grouped into one section, then the interface and user interaction that surrounds the data can be revised and customized without having to reprogram the business logic. MVC was originally developed to map the traditional input, processing, output roles into a logical GUI architecture.
Model
The model is the part of the component that encapsulates the application's data. It will often provide routines to manage and manipulate this data in a meaningful way in addition to routines that retrieve the data from the model. In general, the underlying data access technique should be encapsulated in the model. In this way, if an application is to be moved from a system that utilizes a flat file to store its information to a system that uses a database, the model is the only element that needs to be changed, not the view or the controller.
View
The view is the part of the component that is used to render the data from the model in a manner that is suitable for interaction. For a web-based application, the view would generally be an HTML page that is returned to the user. The view pulls data from the model (which is passed to it from the controller) and feeds the data into a template which is populated and presented to the user. The view does not cause the data to be modified in any way, it only displays the data received from the model.
Controller
The controller is responsible for responding to user actions. In the case of a web application, a user action is generally a page request. The controller will determine what request is being made by the user and respond appropriately by triggering the model to manipulate the data appropriately and passing the model into the view. The controller does not display the data in the model, it only triggers methods in the model which modify the data, and then pass the model into the view which displays the data.
Joomla! Component Framework Explained
Model
In the Joomla framework, models are responsible for managing the data. The first function that has to be written for a model is a get function. It returns data to the caller. For this example, the caller will be the HelloWorldViewHelloWorld view. By default, the model named HelloWorldModelHelloWorld residing in site/models/helloworld.php is the main model associated to this view. So let's have a quick look at the naming conventions with an example, since the naming convention are the actual magic that make everything work: The class HelloWorldViewHelloWorld resides in site/views/helloworld/view.html.php and will make use of the class HelloWorldModelHelloWorld in the file site/models/helloworld.php Let's just assume we want to use an imaginary view fluffy, you would have to have: The class HelloWorldViewFluffy which resides in site/views/fluffy/view.html.php. The view will make use of HelloWorldModelFluffy in the file site/models/fluffy.php. Note: the actual screen of the view: site/views/fluffy/tmpl/default.php is required as well to make this example work. Breaking any of these bold conventions will lead to errors or a blank page.
Accessing a Joomlaǃ Component
First we need to access the Joomla! platform, which is always accessed through a single point of entry. Using your preferred web browser, navigate to the following URL:
1 | user access | <yoursite>/joomla/index.php |
2 | administrator access | <yoursite>/joomla/administrator/index.php |
Hello World! example: localhost/joomla/index.php You can use the URL of the component, or a Menu in order to navigate to the component. In this article we will discuss using the URL.
1 | user access | <yoursite>/joomla/index.php?option=com_<component_name> |
2 | administrator access | <yoursite>/joomla/administrator/index.php?option=com_<component_name> |
Hello World! example: localhost/joomla/index.php?option=com_helloworld
MVC Basic Directory Structure
Components are stored in a directory within your Joomla! installation, specifically at:
- htdocs/<path_to_joomla>/components/com_<component_name>/ .
The Hello World! component would be stored in htdocs/<path_to_joomla>/components/com_helloworld/. A basic component will contain the following files within its directoryː
- An HTML file that is just a security file with a background colorː index.html
- A PHP file that represents the controller itselfː controller.php
- A PHP file that loads the controller classː <component_name>.php
- A PHP file that represents the model itselfː models/<component_name>.php
- Another HTML file for background controlː models/index.html
- A PHP file containing the default viewː views/<component_name>/tmpl/default.php
- An XML file for adding a menu item typeː views/<component_name>/tmpl/default.xml
- Another HTML file for background controlː views/<component_name>/tmpl/index.html
- Another HTML file for background controlː views/<component_name>/index.html
- A PHP file for displaying the viewː views/<component_name>/view.html.php
JEXEC
The following line is commonly found at the start of Joomla! PHP files:
<?php
defined('_JEXEC') or die('Restricted Access');
This enables a secure entry point into the Joomla! platform. JEXEC contains a detailed explanation.
Tutorials on Designing a MVC Component
To learn how to design your own MVC Component, please complete the tutorial for your Joomla! version.