for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* uninstall.php - cleanup on module uninstall
*
* @author XOOPS Module Development Team
* @copyright {@link http://xoops.org 2001-2016 XOOPS Project}
* @license {@link http://www.fsf.org/copyleft/gpl.html GNU public license}
* @link http://xoops.org XOOPS
*/
* Prepares system prior to attempting to uninstall module
* @param XoopsModule $module {@link XoopsModule}
* @return bool true if ready to uninstall, false if not
function xoops_module_pre_uninstall_contact(XoopsModule $module)
$module
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
{
// Do some synchronization
return true;
}
* Performs tasks required during uninstallation of the module
* @return bool true if uninstallation successful, false if not
function xoops_module_uninstall_contact(XoopsModule $module)
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.