-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.php
103 lines (94 loc) · 3.41 KB
/
script.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
<?php
/**
* @package Jollyany Framework
* @author TemPlaza https://www.templaza.com
* @copyright Copyright (C) 2011 - 2022 TemPlaza.
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3 or Later
*/
// no direct access
defined('_JEXEC') or die;
if (!class_exists('jollyanyInstallerScript')) {
class jollyanyInstallerScript
{
/**
*
* Function to run when installing the component
* @return void
*/
public function install($parent)
{
}
/**
*
* Function to run when updating the component
* @return void
*/
function update($parent)
{
}
/**
*
* Function to run before installing the component
*/
public function preflight($type, $parent)
{
$plugin_dir = JPATH_LIBRARIES . '/' . 'jollyany' . '/' . 'plugins' . '/';
$plugins = array_filter(glob($plugin_dir . '*'), 'is_dir');
foreach ($plugins as $plugin) {
if ($type == "uninstall") {
$this->uninstallPlugin($plugin, $plugin_dir);
}
}
}
/**
*
* Function to run after installing the component
*/
public function postflight($type, $parent)
{
$plugin_dir = JPATH_LIBRARIES . '/' . 'jollyany' . '/' . 'plugins' . '/';
$plugins = array_filter(glob($plugin_dir . '*'), 'is_dir');
foreach ($plugins as $plugin) {
if ($type == "install" || $type == "update") {
$this->installPlugin($plugin, $plugin_dir);
if (file_exists(JPATH_ROOT.DIRECTORY_SEPARATOR.'jollyany_installation')) {
jimport('joomla.filesystem.folder');
JFolder::delete(JPATH_ROOT.DIRECTORY_SEPARATOR.'jollyany_installation');
}
}
}
}
public function installPlugin($plugin, $plugin_dir)
{
$db = JFactory::getDbo();
$plugin_name = str_replace($plugin_dir, '', $plugin);
$plugin_name = explode('_', $plugin_name);
$plugin_name = end($plugin_name);
$installer = new JInstaller;
$installer->install($plugin);
$query = $db->getQuery(true);
$query->update('#__extensions');
$query->set($db->quoteName('enabled') . ' = 1');
$query->where($db->quoteName('element') . ' = ' . $db->quote($plugin_name));
$query->where($db->quoteName('type') . ' = ' . $db->quote('plugin'));
$db->setQuery($query);
$db->execute();
return true;
}
public function uninstallPlugin($plugin, $plugin_dir)
{
$db = JFactory::getDbo();
$plugin_name = str_replace($plugin_dir, '', $plugin);
$plugin_name = explode('_', $plugin_name);
$plugin_name = end($plugin_name);
$query = $db->getQuery(true);
$query->update('#__extensions');
$query->set($db->quoteName('enabled') . ' = 0');
$query->where($db->quoteName('element') . ' = ' . $db->quote($plugin_name));
$query->where($db->quoteName('type') . ' = ' . $db->quote('plugin'));
$db->setQuery($query);
$db->execute();
return true;
}
}
}