uninstall.easygallery.php

来自「这是一个joomla系统的插件, 这是一个joomla系统的插件」· PHP 代码 · 共 34 行

PHP
34
字号
<?php/*** @package EasyGallery* @copyright (C) 2006 Joomla-addons.org* @author  Adam van Dongen* @version $Id: uninstall.easygallery.php 12 2007-06-22 13:53:48Z websmurf $* * --------------------------------------------------------------------------------* All rights reserved. Easy Gallery Component for Joomla!** This program is free software; you can redistribute it and/or* modify it under the terms of the Joomla-addons Free Software License * See LICENSE.php for more information.** 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.  * --------------------------------------------------------------------------------**/defined( '_VALID_MOS' ) or die( 'Restricted access' );function com_uninstall(){  global $mainframe, $database;    unlink($mainframe->getCfg('absolute_path') . '/mambots/search/search.easygallery.xml');  unlink($mainframe->getCfg('absolute_path') . '/mambots/search/search.easygallery.php');    $query = "DELETE FROM #__mambots WHERE folder = 'search' AND element = 'search.easygallery'";  $database->setQuery($query);  $database->query();}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?