forked from Ivinco/Joomla-Sphinx-Search-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uninstall.sphinxsearch.php
52 lines (42 loc) · 1.38 KB
/
uninstall.sphinxsearch.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
*
*
* @author Ivinco LTD.
* @package Ivinco
* @subpackage SphinxSearch
* @copyright Copyright (C) 2011 Ivinco Ltd. All rights reserved.
* @license This file is part of the SphinxSearch component for Joomla!.
The SphinxSearch component for Joomla! is free software: you can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the License,
or (at your option) any later version.
The SphinxSearch component for Joomla! 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. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with the SphinxSearch component for Joomla!. If not, see
<http://www.gnu.org/licenses/>.
* Contributors
* Please feel free to add your name and email (optional) here if you have
* contributed any source code changes.
* Name Email
* Ivinco <[email protected]>
*
*/
defined('_JEXEC') or die('Restricted access');
function com_uninstall()
{
$uninstaller = new SphinxSearchUninstaller();
$uninstaller->uninstall();
}
class SphinxSearchUninstaller
{
public function __construct()
{
}
public function uninstall()
{
}
}