| Server IP : 195.130.67.5 / Your IP : 216.73.216.231 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/administrator/components/com_xmap/ |
Upload File : |
<?php
/**
* $Id: uninstall.xmap.php 32 2009-05-18 20:00:14Z guilleva $
* $LastChangedDate: 2009-05-18 15:00:14 -0500 (Mon, 18 May 2009) $
* $LastChangedBy: guilleva $
* Xmap by Guillermo Vargas
* a sitemap component for Joomla! CMS (http://www.joomla.org)
* Author Website: http://joomla.vargas.co.cr
* Project License: GNU/GPL http://www.gnu.org/copyleft/gpl.html
*/
defined( '_JEXEC' ) or die( 'Direct Access to this location is not allowed.' );
/**
* Uninstall routine for Xmap.
* Drops the settings table from the Joomla! database
* @author Daniel Grothe
* @see XmapConfig.php
* @package Xmap_Admin
* @version $Id: uninstall.xmap.php 32 2009-05-18 20:00:14Z guilleva $
*/
function com_uninstall() {
require_once( JPATH_ADMINISTRATOR.DS.'components'.DS.'com_xmap'.DS.'classes'.DS.'XmapConfig.php' );
XmapConfig::remove();
}