Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between Module and Component in Joomla

Can somebody please tell me what is the basic difference between the module and component in Joomla?

If possible, please tell with some examples, so that it is easily understood.

like image 961
Knowledge Craving Avatar asked Jun 28 '10 11:06

Knowledge Craving


People also ask

What is the difference between component and module?

Components are put together (synthesis) to build a software. Modules are the result of dividing (analysis) the code. So components are about the high-level design of a software, whereas modules are more about organization on the code level.

What are modules in Joomla?

Joomla! modules are lightweight extensions or “widgets” that can be inserted into a page to display specific types of pre-configured content. Typical examples include the login module, latest news module and banner module.

What are Joomla components?

A component is a kind of Joomla! extension. Components are the main functional units of Joomla!; they can be seen as mini-applications. An easy analogy would be that Joomla! is the operating system and the components are desktop applications.

What are Joomla modules in PHP?

Modules are lightweight and flexible extensions. They are used for small bits of the page that are generally less complex and are able to be seen across different components. You can see many examples of modules in the standard Joomla! install: - menus - Latest News - Login form - and many more.


1 Answers

Modules are usually small pieces of functionality designed to _present information in your site). They can appear a number of times, on a number of pages in various positions.

On the other hand, a component is typically more complex, with extensive functionality and capabilities. A component can only be displayed in the main area of a page, and can usually only be displayed in a single page.

Read this article for more info: http://www.dart-creations.com/joomla/joomla-tutorials/the-difference-between-modules-and-components.html

like image 159
michbeck Avatar answered Oct 07 '22 16:10

michbeck