-
Notifications
You must be signed in to change notification settings - Fork 0
/
uninstall.k2.php
141 lines (134 loc) · 4.68 KB
/
uninstall.k2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
/**
* @version 2.8.x
* @package K2
* @author JoomlaWorks http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2017 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die;
if (version_compare(JVERSION, '1.6.0', '<'))
{
jimport('joomla.installer.installer');
// Load K2 language file
$lang = JFactory::getLanguage();
$lang->load('com_k2');
$status = new stdClass;
$status->modules = array();
$status->plugins = array();
$modules = $this->manifest->getElementByPath('modules');
$plugins = $this->manifest->getElementByPath('plugins');
if (is_a($modules, 'JSimpleXMLElement') && count($modules->children()))
{
foreach ($modules->children() as $module)
{
$mname = $module->attributes('module');
$client = $module->attributes('client');
$db = JFactory::getDBO();
$query = "SELECT `id` FROM `#__modules` WHERE module = ".$db->Quote($mname)."";
$db->setQuery($query);
$modules = $db->loadResultArray();
if (count($modules))
{
foreach ($modules as $module)
{
$installer = new JInstaller;
$result = $installer->uninstall('module', $module, 0);
}
}
$status->modules[] = array('name' => $mname, 'client' => $client, 'result' => $result);
}
}
if (is_a($plugins, 'JSimpleXMLElement') && count($plugins->children()))
{
foreach ($plugins->children() as $plugin)
{
$pname = $plugin->attributes('plugin');
$pgroup = $plugin->attributes('group');
if ($pgroup == 'finder')
{
continue;
}
$db = JFactory::getDBO();
$query = 'SELECT `id` FROM #__plugins WHERE element = '.$db->Quote($pname).' AND folder = '.$db->Quote($pgroup);
$db->setQuery($query);
$plugins = $db->loadResultArray();
if (count($plugins))
{
foreach ($plugins as $plugin)
{
$installer = new JInstaller;
$result = $installer->uninstall('plugin', $plugin, 0);
}
}
$status->plugins[] = array('name' => $pname, 'group' => $pgroup, 'result' => $result);
}
}
if (JFolder::exists(JPATH_ADMINISTRATOR.'/components/com_joomfish/contentelements'))
{
$elements = $this->manifest->getElementByPath('joomfish/files');
if(is_array($elements))
{
foreach ($elements as $element)
{
if (JFile::exists(JPATH_ADMINISTRATOR.'/components/com_joomfish/contentelements/'.$element->data()))
{
JFile::delete(JPATH_ADMINISTRATOR.'/components/com_joomfish/contentelements/'.$element->data());
}
}
}
}
}
?>
<?php if (version_compare(JVERSION, '1.6.0', '<')): ?>
<?php $rows = 0; ?>
<h2><?php echo JText::_('K2_REMOVAL_STATUS'); ?></h2>
<table class="adminlist">
<thead>
<tr>
<th class="title" colspan="2"><?php echo JText::_('K2_EXTENSION'); ?></th>
<th width="30%"><?php echo JText::_('K2_STATUS'); ?></th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="3"></td>
</tr>
</tfoot>
<tbody>
<tr class="row0">
<td class="key" colspan="2"><?php echo 'K2 '.JText::_('K2_COMPONENT'); ?></td>
<td><strong><?php echo JText::_('K2_REMOVED'); ?></strong></td>
</tr>
<?php if (count($status->modules)): ?>
<tr>
<th><?php echo JText::_('K2_MODULE'); ?></th>
<th><?php echo JText::_('K2_CLIENT'); ?></th>
<th></th>
</tr>
<?php foreach ($status->modules as $module): ?>
<tr class="row<?php echo(++$rows % 2); ?>">
<td class="key"><?php echo $module['name']; ?></td>
<td class="key"><?php echo ucfirst($module['client']); ?></td>
<td><strong><?php echo ($module['result'])?JText::_('K2_REMOVED'):JText::_('K2_NOT_REMOVED'); ?></strong></td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
<?php if (count($status->plugins)): ?>
<tr>
<th><?php echo JText::_('K2_PLUGIN'); ?></th>
<th><?php echo JText::_('K2_GROUP'); ?></th>
<th></th>
</tr>
<?php foreach ($status->plugins as $plugin): ?>
<tr class="row<?php echo(++$rows % 2); ?>">
<td class="key"><?php echo ucfirst($plugin['name']); ?></td>
<td class="key"><?php echo ucfirst($plugin['group']); ?></td>
<td><strong><?php echo ($plugin['result'])?JText::_('K2_REMOVED'):JText::_('K2_NOT_REMOVED'); ?></strong></td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
</tbody>
</table>
<?php endif; ?>