for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* uninstall.php - cleanup on module uninstall
*
* This file is part of gwiki - geekwright wiki
* @copyright Copyright © 2013 geekwright, LLC. All rights reserved.
* @license gwiki/docs/license.txt GNU General Public License (GPL)
* @since 1.0
* @author Richard Griffith <[email protected]>
* @package gwiki
*/
// defined('XOOPS_ROOT_PATH') || exit('XOOPS root path not defined');
* @param XoopsModule $module
* @return bool
function xoops_module_uninstall_gwiki(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.
{
// global $xoopsDB,$xoopsConfig;
// nothing to do yet
return true;
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.