for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
You may not change or alter any portion of this comment or credits
of supporting developers from this source code or any supporting source code
which is considered copyrighted (c) material of the original comment or credit authors.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* Module: Equipment
*
* @category Module
* @package equipment
* @author XOOPS Development Team <[email protected]> - <http://xoops.org>
* @copyright {@link https://xoops.org/ XOOPS Project}
* @license GPL 2.0 or later
* @link https://xoops.org/
* @since 1.0.0
* 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_equipment(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_equipment(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.