Search results

  1. 5

    Joomla Terminology: view, layout, task and component development

    Routing in Joomla is slightly different. The SEF URLs are built from menu items, which in turn point to a View/Layout combination. This turns things around: a controller is not bound to a specific View/Layout. Let's make an example of the flow with the addUser functionality you mentioned as an...
  2. 5

    Create joomla module with parameters

    jimport('joomla.application.module.helper'); $msg = $params->get('message', 'hello world'); return $msg; <config> <fields name="params"> <fieldset name="basic"> <field name="message" type="text"...
Top