J3.x

Criando um módulo simples/Introdução

From Joomla! Documentation

< J3.x:Creating a simple module
Revision as of 12:29, 22 July 2015 by Welkson Ramos (talk | contribs) (Created page with "== Requisitos == Você precisa da versão mais recente do Joomla! 3.x (com PHP, MySQL, Apache e Microsoft II) para este tutorial (como da escrita atualmente 3.1.1)")
Other languages:
Bahasa Indonesia • ‎Deutsch • ‎English • ‎Nederlands • ‎español • ‎français • ‎português • ‎português do Brasil • ‎русский • ‎中文(台灣)‎
Joomla! 
3.x
Tutorial
Creating a simple module

This is a multiple article series on how to create a module for Joomla! Version Joomla 3.x. You can navigate the articles in this series by using the navigation drop down menu.

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 (Articles in this series). There are 2 videos accompanying this tutorial which you can view at Basic Joomla Module Development video 1 and Basic Joomla Module Development video 2.




Joomla! 3.x é construído usando três aplicações diferentes:

  • installação (usado para instalar o Joomla)
  • administrator (usado para gerenciamento do conteúdo)
  • public (usado para exibir o conteúdo)

The installation application is used once. The administrator and public are used through the concept of components with modules. Each module has a single entry point located in the modules directory. This is called mod_modulename/modulename.php (the mod_ prefix is a historical trace)

Requisitos

Você precisa da versão mais recente do Joomla! 3.x (com PHP, MySQL, Apache e Microsoft II) para este tutorial (como da escrita atualmente 3.1.1)

Contribuidores