J3.x

Difference between revisions of "Creating a simple module/Adding an install-uninstall-update script file"

From Joomla! Documentation

< J3.x:Creating a simple module
(Marked for translation)
Line 1: Line 1:
{{Chunk30:Creating a Simple Module for Joomla!3.x - Contents}}
+
<noinclude><languages /></noinclude>
 
+
{{J3.x:Creating_a_simple_module/<translate>en</translate>}}
== Introduction ==
+
<translate>== Introduction ==</translate>
Installing, updating and uninstalling a module may require additional operations that cannot be achieved by the basic operations described in the main xml file. Joomla offers a new approach to solve this problem. It consists in using a php script file containing a class using five methods:
+
<translate>Installing, updating and uninstalling a module may require additional operations that cannot be achieved by the basic operations described in the main xml file. Joomla offers a new approach to solve this problem. It consists in using a php script file containing a class using five methods:</translate>
* preflight which is executed before install and update
+
<translate>* preflight which is executed before install and update
 
* install
 
* install
 
* update
 
* update
 
* uninstall
 
* uninstall
* postflight which is executed after install and update
+
* postflight which is executed after install and update</translate>
  
== Creating the extension script file ==
+
<translate>== Creating the extension script file ==
Writing an extension script consists in declaring an class whose name is ''mod_'''ModuleName'''InstallerScript'' with these 5 methods.
+
Writing an extension script consists in declaring an class whose name is ''mod_'''ModuleName'''InstallerScript'' with these 5 methods.</translate>
  
 
<span id="script.php">
 
<span id="script.php">
''script.php''
+
<tt>''script.php''</tt>
 
<source lang="php">
 
<source lang="php">
 
<?php
 
<?php
Line 84: Line 84:
 
</span>
 
</span>
  
In the update method we show the new version using <code>$parent->get('manifest')->version</code>. You can also redirect to a page of choice with <code>$parent->getParent()->setRedirectURL('index.php?option=com_modules');</code>.
+
<translate>In the update method we show the new version using <code>$parent->get('manifest')->version</code>. You can also redirect to a page of choice with <code>$parent->getParent()->setRedirectURL('index.php?option=com_modules');</code>.</translate>
  
Now you need to add a call to your script.php in the module xml file:
+
<translate>Now you need to add a call to your script.php in the module xml file:</translate>
 
<code>
 
<code>
 
<scriptfile>script.php</scriptfile>
 
<scriptfile>script.php</scriptfile>
 
</code>
 
</code>
 +
 +
<div class="row">
 +
<div class="large-6 columns">{{Basic button|<translate>S:MyLanguage/J3.x:Creating_a_simple_module/Adding_Auto_Update|Prev: Adding Auto Fields</translate>|class=expand success}}</div>
 +
</div>
 +
__NOTOC__
 
<noinclude>
 
<noinclude>
 +
<translate>
 +
[[Category:Tutorials]]
 +
[[Category:Tutorials in a Series]]
 
[[Category:Module Development]]
 
[[Category:Module Development]]
 +
[[Category:Beginner Development]]
 +
[[Category:Joomla! 3.x]]
 +
[[Category:Joomla! 3.0]]
 +
[[Category:Joomla! 3.1]]
 +
[[Category:Joomla! 3.2]]
 +
[[Category:Joomla! 3.3]]
 +
[[Category:Joomla! 3.4]]
 +
</translate>
 
</noinclude>
 
</noinclude>

Revision as of 10:42, 28 June 2015

Other languages:
Bahasa Indonesia • ‎English • ‎Nederlands • ‎español • ‎français • ‎português • ‎中文(台灣)‎
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.




Introduction[edit]

Installing, updating and uninstalling a module may require additional operations that cannot be achieved by the basic operations described in the main xml file. Joomla offers a new approach to solve this problem. It consists in using a php script file containing a class using five methods:

  • preflight which is executed before install and update
  • install
  • update
  • uninstall
  • postflight which is executed after install and update

Creating the extension script file[edit]

Writing an extension script consists in declaring an class whose name is mod_ModuleNameInstallerScript with these 5 methods.

script.php

<?php
// No direct access to this file
defined('_JEXEC') or die;

/**
 * Script file of HelloWorld module
 */
class mod_helloWorldInstallerScript
{
	/**
	 * Method to install the extension
	 * $parent is the class calling this method
	 *
	 * @return void
	 */
	function install($parent) 
	{
		echo '<p>The module has been installed</p>';
	}

	/**
	 * Method to uninstall the extension
	 * $parent is the class calling this method
	 *
	 * @return void
	 */
	function uninstall($parent) 
	{
		echo '<p>The module has been uninstalled</p>';
	}

	/**
	 * Method to update the extension
	 * $parent is the class calling this method
	 *
	 * @return void
	 */
	function update($parent) 
	{
		echo '<p>The module has been updated to version' . $parent->get('manifest')->version) . '</p>';
	}

	/**
	 * Method to run before an install/update/uninstall method
	 * $parent is the class calling this method
	 * $type is the type of change (install, update or discover_install)
	 *
	 * @return void
	 */
	function preflight($type, $parent) 
	{
		echo '<p>Anything here happens before the installation/update/uninstallation of the module</p>';
	}

	/**
	 * Method to run after an install/update/uninstall method
	 * $parent is the class calling this method
	 * $type is the type of change (install, update or discover_install)
	 *
	 * @return void
	 */
	function postflight($type, $parent) 
	{
		echo '<p>Anything here happens after the installation/update/uninstallation of the module</p>';
	}
}

In the update method we show the new version using $parent->get('manifest')->version. You can also redirect to a page of choice with $parent->getParent()->setRedirectURL('index.php?option=com_modules');.

Now you need to add a call to your script.php in the module xml file: <scriptfile>script.php</scriptfile>