This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
MatritumCantat_Web/www/administrator/components/com_joomap/uninstall.joomap.php
2012-09-18 20:02:43 +00:00

17 lines
543 B
PHP

<?php defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); ?>
<?php
/**
* Uninstall routine for Joomap.
* Drops the settings table from the Joomla! database
* @author Daniel Grothe
* @see JoomapConfig.php
* @package Joomap_Admin
* @version $Id: install.joomap.php,v 0.1 2006/03/16 20:27:27 mic Exp $
*/
function com_uninstall() {
require_once( $GLOBALS['mosConfig_absolute_path'] . '/administrator/components/com_joomap/classes/JoomapConfig.php' );
JoomapConfig::backup();
JoomapConfig::remove();
}
?>